.login-banner {
    background-image: url(../img/login-bg.png);
    background-size: cover;
    background-position: center;
}

.login-title {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 900;
    margin: 0 0 2rem 0;
    
}

.login-controls {
    gap: 1rem;
}

.field {
    width: 350px;
    height: 3rem;
    border: none;
    padding: 0rem 2rem;
    border-radius: 12px;
    font-size: 13px;
    outline: none;
    background-color: var(--background);
	box-sizing: border-box;
}

.field::placeholder {
    color: var(--placeholder);
    font-weight: 300;
}

.pswd-container {
    position: relative;
}

.hide-pswd {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    cursor: pointer; 
    transition: transform 0.1s ease;
	width: 15px;
	height: auto;
}

.hide-pswd:active {
    transform: translateY(-50%) scale(0.9);
}

.auth-btn {
    width: 100%;
    height: 3rem;
    background-color: var(--red);
    color: white;
    border: none;
    /* padding: 2rem; */
    border-radius: 12px;
    font-size: 18px;
    /* text-transform: uppercase; */
    font-weight: 600;
}

.restore-link {
    color: var(--red);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.login-logo {
    width: 20%;
    min-width: 180px;
}

.login-details {
    background-color: white;
    /* padding: 4rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1600px) {
    .login-details {
        width: 30%;
    }
    .login-banner {
        width: 70%;
    }
}

@media (max-width: 1300px) {
    .login-details {
        width: 35%;
    }
    .login-banner {
        width: 65%;
    }
}

@media (max-width: 1200px) {
    .login-details {
        width: 40%;
    }
    .login-banner {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .login-details {
        width: 50%;
    }
    .login-banner {
        width: 50%;
    }
}

@media (max-width: 800px) {
    .login-details {
        width: 100%;
        height: 70%;
        align-self: center;
    }
    .login-banner {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .login-title {
        margin: 0 0 2rem 0;
    }
}

@media (max-width: 600px) {
    .login-title {
        font-size: 24px;
    }
    .field {
        height: 3rem;
        font-size: 20px;
    }
    .auth-btn {
        height: 3rem;
        font-size: 24px;
    }
    .restore-link {
        font-size: 16px;
    }
}