@font-face {
  font-family: Poppins-Regular;
  src: url('fuentes/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('fuentes/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('fuentes/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('fuentes/poppins/Poppins-SemiBold.ttf'); 
}

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

body, html {
	height: 100%;
	font-family: Poppins-Medium, sans-serif;
	background: url("img/Fondo.png") no-repeat center center fixed;
	background-size: cover;
	color: #E2E8F0;
}
body::before {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(11, 15, 25, 0.65);
	top: 0;
	left: 0;
	z-index: 0;
}

/* INPUTS */
input {
	outline: none;
	border: none;
	color: #E2E8F0;
}

input::placeholder {
	color: #94a3b8;
}

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}


/* CONTENEDOR LOGIN */
.container-login {
  width: 100%;  
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
	position: relative;
	z-index: 1;
  background: transparent; /* 🔥 CLAVE */
}


/* CARD LOGIN */
.wrap-login {
  width: 400px;
  background: rgba(30, 41, 59, 0.55); /* más transparente */
  border-radius: 20px;
  padding: 77px 55px 53px 55px;
  backdrop-filter: blur(18px);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.7);
  color: #E2E8F0;
  border: 1px solid rgba(255,255,255,0.08);
}

/* TITULO */
.login-form {
  width: 100%;
}

.login-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 40px;
  color: #D4AF37;
  line-height: 1.5;
  text-align: center;
}


/* INPUT */
.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #475569;
  margin-bottom: 37px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #E2E8F0;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}


/* EFECTO INPUT */
.focus-efecto {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-efecto::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 4px;

  transition: all 0.4s;

  background: linear-gradient(to right, #D4AF37, #FFD700);
}

.focus-efecto::after {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  transition: all 0.4s;
}

.input100:focus + .focus-efecto::after {
  top: -15px;
}

.input100:focus + .focus-efecto::before {
  width: 100%;
}

.has-val.input100 + .focus-efecto::after {
  top: -15px;
}

.has-val.input100 + .focus-efecto::before {
  width: 100%;
}


/* BOTON */
.container-login-form-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login-form-btn {
  width: 100%;
  position: relative;
  border-radius: 40px 5px;
  overflow: hidden;
  margin: 0 auto;
}

/* FONDO BOTON */
.login-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: linear-gradient(135deg, #D4AF37, #eed99b);
  top: 0;
  left: -100%;
  transition: all 0.4s;
}

/* TEXTO BOTON */
.login-form-btn {
  font-family: Poppins-Bold;
  font-size: 19px;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.8px;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

/* EFECTO HOVER */
.wrap-login-form-btn:hover .login-form-bgbtn {
  left: 0;
}


/* RESPONSIVE */
@media (max-width: 576px) {
  .wrap-login {
    padding: 77px 15px 33px 15px;
  }
}
.logo {
    width: 320px;   
    max-width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.6));
}
.wrap-login,
.login-form,
.input100,
.login-form-btn,
.alert-login {
    font-family: Poppins-Medium, sans-serif;
}

.wrap-login h1,
.wrap-login h2,
.wrap-login h3,
.logo-text {
    font-family: Poppins-Bold, sans-serif;
    letter-spacing: 0.5px;
}
.alert-login {
  width: 100%;
  margin-bottom: 25px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
  font-family: Poppins-Medium, sans-serif;
  font-size: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}