/*----------------------------------------
    Login Page
------------------------------------------*/
:root{
    --dark-blue-bg: #2C606A;
    --navbar-button-text: #e5e8eb;
}

#loginWrapper {
    padding-bottom: 30px;
    overflow-x: hidden;
    min-height:100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('../../../Assets/Images/background_login.png');
}

#loginHeader {
    padding: clamp(1rem, 2.5vw, 40px);
    font-size: 16px;
}

#loginHeader .logo-header {
    height: 29px;
}
#loginHeader .logo-header .logoTitle {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 0 .5rem;
    letter-spacing: 2px;
}

.projectData {
    flex-direction: column;
    gap: 20px;
}

#projectImg {
    height: 120px;
    width: 120px;
    border: 1px solid var(--navbar-button-text);
    background: var(--navbar-button-text);
    background-image: url('/favicon/favicon.svg');
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

#projectTitle h2 {
    font-size: 28px;
    font-weight: 500;
    color: white;
}

#login-page{
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

#login.login-form {
    width: min(90%, 450px);
}

#signupTitle {
    color: white;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.login-field {
    font-size: 16px;
    margin-bottom: 20px;
}

.login-field label {
    color: white;
    font-size: 14px;
}

.login-field input.loginInput {
    margin-top: 10px;
}

#passwordField {
    position: relative;
    /* height: 88px; */
}

#passwordField #password {
    padding-right: 3rem;
    z-index: 1;
}

#passwordField #togglePassword {
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 19px;
    padding: 1rem;
    color: #3D3D3D;
    cursor: pointer;
}

#loginAdmin {
    height: 60px;
    line-height: 60px;
    background: var(--dark-blue-bg);
    padding-inline: 85px;
    color: white;
    border-radius: 30px;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin-top: 30px;
    border: none;
    font-weight: 500;
    font-family: 'Roboto';
}

#hCaptcha iframe {
    max-width: 90%;
}


