/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Giga';
    background-color: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}




/* Login Container */
.login-container {
    display: flex;
    width: 100vw; /* Responsive width */
    max-width: 1920px;
    height: 1080px;
    min-height: 600px; /* Ensures it doesn't shrink too much */
    background-color: #1e1e1e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

/* Left Side: Login Form */
.login-form {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-right: 10px;
}
.login-form form {
    width: 80%; 
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

}

.login-form h1 {
    position: relative;
    color: #ffffff;
    font-size: 32px;
    margin-top: -60px;
    font: 'Lexend Giga';
    margin-bottom: 30px;
    text-align: left;
    padding:  0 30px;
    left: 30px;
}


.login-form h3 {
    position: relative;
   margin-bottom: 50px;
   padding: 0 30px;
   left: 30px;
   color: white;
}


.login-form input {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #444;
    background: transparent;
    color: #f5f5f5;
    font-size: 16px;
    font-family: 'Lexend Giga';

}

.login-form input:focus {
    outline: none;
    border-bottom: 2px solid #ffffff;
}

.login-button {
    background-color: #f4b800;
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: background 0.3s;
    position: relative;
    margin-left: 430px;
 
}

.login-button:hover {
    background-color: #ffffff;
    transition: 0.3s;
}

.forgot-password {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.forgot-password span {
    color: #f4b800;
    text-decoration: underline;
}




/* Right Side: Logo Image */
.login-image {
    flex: 1;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: fixed;
}


input::placeholder {
    font-family: 'Lexend Giga', sans-serif;
    font-size: 18px;
    color: #888;
}

button{
    font-family: 'Lexend Giga', sans-serif;
    font-size: 18px;
    color: #888;
    
}