/* Login */

#Login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-top: 15vh;
    flex-direction: column;
}

.LoginDiv {
    display: flex;
    align-items: center;
}

#FormDiv {
    background-color: var(--tertiary);
    width: 25vw;
    border-radius: 10px;
}

#logo_login {
    height: 8rem;
}

#title_login {
    font-size: 4rem;
    font-weight: bold;
    color: var(--tertiary);
    font-family: "Cormorant", serif;
    font-weight: 400;
    margin: 0 10px;
}

#LoginForm {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
}

.InputDiv {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 30px auto;
}

.input {
    width: 100%;
    display: block;
    border-radius: 5px;
    height: 40px;
    outline: none;
    border: 4px solid var(--secondary);
    padding: 5px;
}

.input:focus {
    border-color: var(--primary);
}

label {
    width: 80%;
    text-align: left;
    margin: 0 0 5px 0;
}

#LoginSubmit {
    color: var(--tertiary);
    background-color: var(--secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

#LoginSubmit:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

#LoginMsgDiv {
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    font-size: 1rem;
    border-right: 5px solid red;
    border-left: 5px solid red;
    padding: 3px 0;
    width: 80%;
    margin: auto;
    background-color: rgba(255,0,0,0.075);
}

#PasswordDiv a {
    padding-top: 5px;
    font-size: 13px;
    text-decoration: none;
}

#BottomLogo {
    position: absolute;
    right: 50px;
    bottom: 50px;
    font-size: 40px;
    color: var(--tertiary);
}

/* Media Queries */ 

@media (width > 900px) and (width <= 1400px) {
    #FormDiv {
        width: 40vw;
    }
}

@media (width <= 900px) {
    #FormDiv {
        width: 60vw;
    }
    
    #logo_login {
        height: 7rem;
    }

    #title_login {
        font-size: 3rem;
    }
}

@media (width <= 600px) {
    #logo_login {
        height: 5rem;
    }

    #title_login {
        font-size: 2.5rem;
    }
    
    #FormDiv {
        width: 90vw;
    }

    #LoginForm {
        font-size: 1rem;
    }
}