﻿.authPage {
    min-height: calc(100vh - 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f7;
    padding: 40px 18px;
    position: relative;
}

.authClose {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    font-size: 20px;
}

.authCard {
    width: 420px;
    max-width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    padding: 22px;
    text-align: center;
}

.authBrand {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    opacity: .85;
}

.authTitle {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 4px;
}

.authSub {
    font-size: 12px;
    color: rgba(0,0,0,.55);
    margin-bottom: 14px;
}

.authInput {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,.15);
    padding: 0 12px;
    outline: none;
}

.authBtn {
    width: 100%;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #111;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
}

    .authBtn.is-disabled {
        opacity: .55;
        pointer-events: none;
    }

.authOr {
    margin: 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0,0,0,.45);
    font-size: 12px;
}

    .authOr:before, .authOr:after {
        content: "";
        height: 1px;
        background: rgba(0,0,0,.12);
        flex: 1;
    }

.authGoogle {
    width: 100%;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.18);
    background: #fff;
    font-weight: 700;
    cursor: pointer;
}

.authFoot {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(0,0,0,.55);
}

    .authFoot a {
        color: #4b58d6;
        text-decoration: none;
    }

.authError {
    color: #c2185b;
    font-size: 12px;
    margin: 8px 0 0;
}
