@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px 36px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1c1917 0%, #12100e 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.65);
}

.auth-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.55rem, 4vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin: 0 0 8px;
    line-height: 1.15;
}

.auth-sub {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 500;
}

.auth-error {
    font-family: 'Manrope', sans-serif;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-card .form-group {
    margin-bottom: 18px;
}

.auth-card .form-label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.auth-card .form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.auth-card .form-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
    font-weight: 400;
}

.auth-card .form-input:focus {
    outline: none;
    border-color: rgba(232, 83, 58, 0.55);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(232, 83, 58, 0.12);
}

.auth-card .btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 12px;
    min-height: 50px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.88rem;
}

.auth-links {
    margin-top: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-links a {
    font-family: 'Manrope', sans-serif;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.auth-links a:hover {
    color: var(--accent);
}

.auth-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.auth-consent input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.auth-consent a {
    color: var(--accent);
    text-decoration: underline;
}

.auth-consent a:hover {
    color: #ff6b4a;
}
