@import url(/static/css/colour.css);

.main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.auth_stage {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.auth_card {
    position: static;
    width: 100%;
    display: none;
}

.auth_card.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth_inner {
    border-radius: 14px;
    border: 1px solid #0000001a;
    height: auto;
}

.auth_card_login .auth_inner {
    width: 88vw;
    max-width: 640px;
}

.auth_card_register .auth_inner {
    width: 88vw;
    max-width: 980px;
}
.auth_title {
    font-weight: 700;
    color: var(--text-color);
}

.link_btn {
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    font: inherit;
}

.link_btn:hover {
    text-decoration: underline;
}

.hint_slot {
    min-height: 22px;
    line-height: 1.1;
    margin-top: 4px;
}

.hint_text {
    display: inline-block;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
}


@media (min-width: 768px) {
    .auth_card_login .auth_inner{ 
        width: 60vw;
    }

    .auth_card_register .auth_inner  {
        width: 80vw;
    }
}