#loginWindow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 90vh;
    min-height: 500px;
}

#mainLogo {
    height: 100%;
    max-height: 143px;
    width: auto;
}

.mainLogin {
    background-color: var(--colorWhite);
    width: 95%;
    max-width: 300px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    border: 4px solid var(--mainColor);
    box-shadow: 1px 0px 15px 5px rgba(12, 12, 12, 0.25);
}

.mainLogin h2 {
    font-size: 20px;
    margin-bottom: 25px;
}

.mainLogin input {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding-left: 20px;
}

.mainLogin input::placeholder {
    font-family: 'Inter', sans-serif;
    color: var(--colorLight);
}


@media (min-width:720px) {

    /* .mainLogin {
        border-radius: 0px 10px 10px 0px;
    } */

}