body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f1a;
    padding: 2rem;
}

.fp-card {
    width: 100%;
    max-width: 420px;
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fp-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #4f8eff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

.fp-icon {
    width: 64px;
    height: 64px;
    background: rgba(79, 142, 255, 0.1);
    border: 1px solid rgba(79, 142, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
}

.fp-sub {
    text-align: center;
    color: #9aa4b2;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #9aa4b2;
    margin-bottom: 0.45rem;
}

.form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-group input:focus {
    border-color: #4f8eff;
    box-shadow: 0 0 0 3px rgba(79, 142, 255, 0.12);
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #4f8eff, #a78bfa);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(79, 142, 255, 0.3);
    margin-bottom: 1.2rem;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #9aa4b2;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}

/* Success state */
.success-state {
    display: none;
    text-align: center;
    animation: fadeUp 0.5s ease both;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.success-state h2 {
    color: #34d399;
}

.success-state p {
    color: #9aa4b2;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.resend-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1rem;
}

.resend-note a {
    color: #4f8eff;
    text-decoration: none;
    cursor: pointer;
}