/* Minification failed. Returning unminified contents.
(2,46): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(2,65): run-time error CSS1039: Token not allowed after unary operator: '-secondary-main-color'
(53,30): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(54,25): run-time error CSS1039: Token not allowed after unary operator: '-text-color'
(60,34): run-time error CSS1039: Token not allowed after unary operator: '-secondary-main-color'
 */
body {
    background: linear-gradient(334deg, var(--main-color), var(--secondary-main-color))
}

#unauthenticatedContainer {
    display: flex;
    justify-content: space-around;
}

#unauthenticatedForm {
    background: white;
    border-radius: 5px;
    width: 400px;
    margin-left: 30px;
}

.info-label {
    margin: 1rem;
    font-weight: 400;
}

.title-info-label {
    text-align: center
}

.action {
    display: flex;
    flex-direction: row;
}

    .action .login-button {
        width: 100%;
        border: none;
        padding: 18px;
        cursor: pointer;
        text-transform: uppercase;
        background: #e8e9ec;
        color: #777;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 0;
        letter-spacing: 0.2px;
        outline: 0;
        transition: all .3s;
        text-align:center;
        font-weight:500;
    }

        .action .login-button:hover {
            background: #d8d8d8;
        }

        .action .login-button:nth-child(2) {
            background: var(--main-color);
            color: var(--text-color);
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 4px;
        }

            .action .login-button:nth-child(2):hover {
                background: var(--secondary-main-color);
            }

.CALogo {
    width:100px;
    margin: 20px auto;
    display:block;
}

.checkbox {
    margin-left:1rem;
}

