/* Poppins Font Family */
@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.login-component {
  width: 345px;
  border-radius: 4px;
  padding: 24px;
  background-color: #f2f9f9;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  margin: 10px auto;
}

.login-title {
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  line-height: 36px;
  font-weight: 400;
  color: #21272a;
  margin-bottom: 24px;
}

.login-title span {
  font-weight: 700;
}

/* Formulario */

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.form-group input {
  height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  border-bottom: 1px solid #c1c7cd;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.form-group input:placeholder-shown {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 24px;
}

.form-actions a {
  color: #21272a;
}

/* Botón iniciar sesión */

.form-submit {
  height: 48px;
  border-radius: 4px;
  padding: 16px 24px;
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid #282425;
  background-color: #282425;
  color: #f2f9f9;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.form-submit:hover {
  background-color: #ff6a2d;
  border: 1px solid #ff6a2d;
  color: #282425;
  transition: background-color 300ms ease-out;
}

/* Sección Social */

.social-title {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  font-family: "Poppins", sans-serif;
  color: #21272a;
  margin-bottom: 24px;
}

.social-title::before,
.social-title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #bcd9d9;
}

.social-title::before {
  margin-right: 16px;
}

.social-title::after {
  margin-left: 16px;
}

.social-buttons {
  display: flex;
  flex-direction: column;
}

.social-buttons button {
  height: 56px;
  border-radius: 50px;
  border: 1px solid #111119;
  border-width: 1px;
  padding: 8px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  cursor: pointer;
}

.signup-cta {
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  font-family: "Poppins", sans-serif;
}

.signup-cta a {
  margin-left: 10px;
  font-weight: 700;
  color: #21272a;
}

@media (min-width: 1024px) {
  .login-component {
    width: 540px;
  }
}
