/* Fondo suave */

/* Contenedor del login */
.login .container, .register .container, .account .container {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.login label, .register label, .account label {
  margin-bottom: .5rem;
}

/* Contenedor general */
.socialaccount_providers {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socialaccount_providers li {
  margin-bottom: 0.75rem;
}

/* Estilo base del enlace */
.socialaccount_providers a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* -------- GOOGLE ---------- */
.socialaccount_providers a.Google {
  background: #fff url("../icons/google.svg") no-repeat 0.75rem center;
  background-size: 1.2rem;
  color: #444;
  border: 1px solid #ddd;
  padding-left: 2.5rem;
}

.socialaccount_providers a.Google:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  border-color: #ccc;
}

/* -------- FACEBOOK ---------- */
.socialaccount_providers a.Facebook {
  background: #1877f2 url("../icons/facebook.svg") no-repeat 0.75rem center;
  background-size: 1.2rem;
  color: #fff;
  padding-left: 2.5rem;
}

.socialaccount_providers a.Facebook:hover {
  background-color: #145dbf;
}

/* -------- APPLE ---------- */
.socialaccount_providers a.Apple {
  background: #000 url("../icons/apple.svg") no-repeat 0.75rem center;
  background-size: 1.2rem;
  color: #fff;
  padding-left: 2.5rem;
}

.socialaccount_providers a.Apple:hover {
  background-color: #333;
}

/* Aplica estilo tipo .form-control a todos los campos de formulario */
.login input[type="text"], .register input[type="text"], .account input[type="text"],
.login input[type="email"], .register input[type="email"], .account input[type="email"],
.login input[type="password"], .register input[type="password"], .account input[type="password"],
.login input[type="number"], .register input[type="number"], .account input[type="number"],
.login input[type="url"], .register input[type="url"], .account input[type="url"],
.login input[type="tel"], .register input[type="tel"], .account input[type="tel"],
.login select,
.login textarea {
  display: block;
  width: 100%;
  padding: .5rem 1em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  appearance: none;
  background-color: #f4ede4;
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-inset);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#id_login, #id_username {
  background:#f4ede4 url("../icons/user.svg") no-repeat right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem; 
  color: var(--bs-body-color);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-inset);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  opacity: 0.85;

}

#id_login:focus, #id_password:focus, #id_username:focus,
#id_password1:focus, #id_password2:focus, #id_email:focus {
  background-color:  #f4ede4;
  opacity: 1;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), .25);
}



#id_password, #id_password1, #id_password2 {
  background:#f4ede4 url("../icons/lock.svg") no-repeat right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem; 
  color: var(--bs-body-color);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-inset);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  opacity: 0.85;
}


#id_email {
  background:#f4ede4 url("../icons/envelope.svg") no-repeat right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem; 
  color: var(--bs-body-color);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-inset);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  opacity: 0.85;
}
