/*========== GOOGLE FONT ==========*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* =========== VARIABLES CSS ========== */

:root{
	/* =========== Colors ========== */
	--header-transparency : rgba(0, 0, 0, 0.1);
	--header-top-color: hsl(0, 0%, 100%);
	--header-bottom-color: hsl(0, 0%, 50%);
	--footer-color: /* rgb(240, 230, 220) */ hsl(0, 40%, 90%);
	--hover-color: /* #F77F05 */ rgb(247, 127, 5);

	/*=========== Font and typography ==========*/
	/*.5rem = 8px / 1rem = 16px ...*/
}

/*=========== BASE ==========*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: "Poppins", sans-serif;
    background-image: url('../assets/img/img-logo-LDBB.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-size: 100% 100%;
    background-attachment: fixed;
    min-height: 100vh;
}

/* .container{
	background: rgba(0, 0, 0, 0.6);

	backdrop-filter: blur(4px);
	width: 100%;
	height: auto;
	padding: 5em 20em 5em 20em;
} */

.container {
    background: rgba(0, 0, 0, 0.6);
    /* blury */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* For Safari compatibility */
    width: 100%;
    height: auto;
    padding: clamp(2em, 5vw, 5em) clamp(1.5em, 30vw, 20em); /* Fluidly scales down on smaller devices */
    margin: 0 auto; /* Keeps the container centered */
}

.wrapper{
	background-color: rgba(128, 128, 128, 0.5);
	backdrop-filter: blur(7px); 
	padding: 5em;
	border-radius: 15px;
}

.image-logo{
	display: block;
    margin-left: auto;
    margin-right: auto;
	height: 120px;
	width: 200px;
}

.wrapper h1{
	font-size: 20px;
	color: white;
	text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
  padding: 20px;
  border: 1px solid #112641;
  border-radius: 15px;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #112641;
  font-size: 16px;
  border-radius: 40px;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  padding: 20px 45px 20px 20px;
}

label {
	color: white;
}

input::placeholder{
	color: #112641;
}

.remember-forgot{
	display: flex;
	justify-content: space-between;
	font-size: 14.5px;
	margin: 10px 0 15px;
}

.remember-forgot label input {
	accent-color: #fff;
	margin-right: 3px;
}

.remember-forgot a{
	color:  #fff;
	text-decoration: none;
}

.remember-forgot a:hover{
	text-decoration: underline;
	color: #112641;
}

.login-btn {
  background-color: #112641;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.copyright{
	text-align: center;
	font-weight: 800;
	color: white;
	margin: 2px 0 0 0;
	margin-top: 20px;
}

.aba{
	color: #112641;
	text-decoration: none;
}

/* Tablet specific override (e.g., iPads, large tablets) */
@media (max-width: 800px) {
    .container {
        padding: 17em 10em;
        min-height: 100vh;
    }
}

@media (max-width: 800px) {
  .wrapper {
    padding: 2.5em; /* Reduced for smaller viewports */
    width: 90%;     /* Prevents edge-to-edge overflow */
    margin: 0 auto; /* Centers the wrapper */
  }
}

