/* =========================
   Frontend Login
   Datei: /frontend/assets/css/frontend-login.css
   ========================= */

.container.section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
}

.login-card {
    width: 100%;
    max-width: 420px;

    background: rgba(20, 22, 38, 0.9);
    backdrop-filter: blur(10px);

    border-radius: 18px;
    padding: 2.2rem 2rem;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 24px rgba(139, 43, 217, 0.35);
}

/* =========================
   Header
   ========================= */

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    max-width: 160px;
    margin-bottom: 1rem;

    border-radius: 12px;
    padding: 6px;

    background: rgba(255, 255, 255, 0.04);

    box-shadow: 0 0 14px rgba(139, 43, 217, 0.35);
}

.login-header h1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* =========================
   Actions / Buttons
   ========================= */

.login-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;
    border-radius: 14px;

    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;

    color: #ffffff;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 18px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 26px rgba(139, 43, 217, 0.45);
}

/* Telegram */

.login-btn.telegram {
    background: linear-gradient(
        180deg,
        rgba(34, 158, 217, 0.55),
        rgba(34, 158, 217, 0.28)
    );
}

/* Google */

.login-btn.google {
    background: linear-gradient(
        180deg,
        rgba(220, 78, 65, 0.55),
        rgba(220, 78, 65, 0.28)
    );
}

.login-btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* =========================
   Footer
   ========================= */

.login-footer {
    text-align: center;
    margin-top: 1rem;
}

.login-footer a {
    color: #c9cbe0;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.85;
}

.login-footer a:hover {
    text-decoration: underline;
}
