/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 28, 2020, 3:43:27 PM
    Author     : Nikolay
*/

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500&display=swap');

:root {
    --header-text-size: 20pt;
}

.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-width: 320px;
    background-color: #f0f4f9;
}

.left-panel {
    width: 40%;
    height: 100%;
    display: flex;
    background-image: linear-gradient(#54AE53, #1C4E7C);
    position: relative;
}

.right-panel {
    width: 60%;
    min-width: 300px;
}

.left-panel-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.left-panel-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 36px 36px 36px;
    align-items: center;
    height: 100%;
    z-index: 1;
}

.left-panel-group-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.unikorm-text {
    font-size: 36px;
}

.about-text {
    font-size: 24px;
}

.version-group {
    position: absolute;
    bottom: 36px;
    font-size: 16px;
}

.cow-image {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.right-panel-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-panel-group-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--header-text-size);
}

.right-panel-group-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 400px;
}

.header-text {
    font-size: var(--header-text-size);
    vertical-align: baseline;
    display: flex;
    justify-content: center;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-text {
    /*font-weight: 500;*/
}

.right-panel-group-button {
    text-align: center;
    width: 100%;
}

.login-button {
    margin-top: 12px;
}

.alert-message {
    position: absolute;
    top: 0;
    right: 0;
    height: auto !important;
    margin: 0 1rem;
}

.logo-text-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.login-divider-group {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #BDBDBD;
}

.login-divider {
    width: 100%;
    height: 1px;
    background-color: #BDBDBD;
}

@media (max-width: 1341px) {
    .left-panel-group-text {
        padding-top: 120px;
    }
}

@media (max-width: 961px) {
    .left-panel-group-text {
        padding-top: 0;
        margin-bottom: 80px;
    }

    .left-panel-group {
        justify-content: center;
        padding: 0 36px;
    }

    .left-panel-content {
        justify-content: center;
    }

    .unikorm-text {
        font-size: 28pt;
    }

    .about-text {
        font-size: 18pt;
    }

    .cow-image {
        display: none;
    }

    .left-panel-group {
        justify-content: center;
    }

    .right-panel-group-content {
        width: 300px;
    }
}

@media (max-width: 691px) {
    .left-panel-group {
        padding: 0;
    }

    .left-panel-group-text {
        margin-bottom: 0;
    }

    .left-panel {
        width: 100%;
        height: 30%;
        background-image: none;
        background-color: #54AE53;
    }

    .right-panel {
        width: 100%;
        height: 100%;
    }

    .right-panel-content {
        height: 100%;
    }

    .login-panel {
        position: relative;
        flex-direction: column;
        justify-content: space-between;
    }

    .login-form {
        width: 100%;
        height: 100%;
    }

    .version-group {
        display: none;
    }

    .about-text {
        display: none;
    }

    .content-area {
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 0;
    }

    .right-panel-group-container {
        margin-bottom: 0;
        height: 100%;
    }

    .right-panel-group-content {
        justify-content: center;
        margin-bottom: 40px;
    }
}
