/* static/css/auth.css */

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #0a0a0a;
    padding: 20px;
}

.auth-card {
    background: #1a1a1a;
    padding: 40px 36px;
    border-radius: 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.auth-logo {
    font-size: 48px;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.auth-sub {
    color: #7c7c7c;
    text-align: center;
    font-size: 14px;
    margin: 6px 0 24px 0;
}

.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid #2a2a2a;
    background: #0f0f0f;
    color: #e4e4e4;
}

.oauth-btn:hover {
    background: #1e1e1e;
    border-color: #3a3a3a;
}

.google-btn svg {
    width: 20px;
    height: 20px;
}

.yandex-btn {
    background: #fc3f1d;
    color: #fff;
    border-color: #fc3f1d;
}

.yandex-btn:hover {
    background: #e63314;
    border-color: #e63314;
}

.ya-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #fc3f1d;
    border-radius: 50%;
    font-weight: bold;
    font-size: 13px;
    line-height: 1;
}
