body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Giga';
    background-color: #1e1e1e;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

.container{
    box-shadow: none;
}
.login-container {
    display: flex;
    width: 100vw; /* Responsive width */
    max-width: 1920px; /* Prevents excessive stretching */
    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);
    overflow: hidden;
}

.login-form {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    width: 50%;
    min-width: 350px; /* Ensures form does not shrink too much */
}

.login-form form {
    width: 100%;
    max-width: 400px; /* Keeps form elements aligned */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.login-form h1 {
    color: #f4b800;
    font-size: 32px;
    margin-bottom: 30px;
    margin-top: -50px;
    text-align: center;
}

.login-form input {
    width: 100%;
    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: 0.3s;
    max-width: 180px; /* Prevents shrinking */
    width: 100%;
    position: absolute;
    bottom: -50px;
    right: 0;
}

.login-button:hover {
    background-color: #ffffff;
    transition: 0.3s;
}

.forgot-password {
    margin-top: 70px;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    text-align: left;
}

.forgot-password span {
    color: #f4b800;
    text-decoration: underline;
}

.forgot-password a {
    color: #f4b800;
    cursor: pointer;
}

.forgot-password a:hover {
    color: #ffffff;
    transition: 0.3s;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color:#f4b800;
    font-size: 14px;
}

.separator hr {
    flex: 1;
    border: none;
    border-top: 4px solid #f4b800;
    width: 1vh;
}

.separator span {
    margin: 0 10px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-login img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.social-login img:hover {
    transform: scale(1.1);
    opacity: 0.8;
    background-color: #fff6f6;
    border-radius: 8px;
    transition: 0.3s;
}

.login-image {
    flex: 1;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-width: 400px; /* Prevents image from shrinking too much */
}

.login-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

input::placeholder {
    font-family: 'Lexend Giga';
    font-size: 18px;
    color: #888;
}

button {
    font-family: 'Lexend Giga';
    font-size: 18px;
    color: #888;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

.eye-icon {
    position: absolute;
    top: 65%;
    right: 2%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #888;
    cursor: pointer;
}

/* Disable scrolling */
body, html {
    overflow: hidden;
}

