﻿.main-background {
    display: flex;
    height: 100dvh;
    flex-direction: column;
}

.main-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

.logo {
    margin-bottom: 30px;
}

@media (max-width: 640.98px) {
    .logo {
        display: none !important;
    }

    .main-background {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .main-form {
        width: 100vw;
        height: calc(100dvh - 78px);
        padding: 30px;
    }
}

@media (min-width: 640.98px) {
    .banner {
        display: none !important;
    }

    .main-background {
        align-items: center;
        justify-content: center;
    }

    .main-form {
        border-radius: 10px;
        width: 400px;
        height: 400px;
        padding: 25px;
    }
}

.authentication-background {
    background-color: black;
}

.button-primary {
    background-color: #00B050;
}

.button-secondary {
    background-color: #007F39;
}

.NormalButtonGreen {
    background-color: #00B050;
}