.fp-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1rem;
}

.fp-card {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
}

.fp-card__title {
    color: #4A90E2;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.fp-card__subtitle {
    color: #666;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.fp-form__group {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 14px;
}

.fp-form__control {
    width: 100%;
    padding: .9rem 1rem;
    border: 2px solid #e1e5e9;
    border-left: 4px solid #4A90E2;
    border-radius: 8px;
    font-size: .95rem;
    transition: all .2s ease;
    background: #f8f9fa;
}

.fp-form__control:focus {
    outline: none;
    border-color: #4A90E2;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.validation-error {
    color: #dc3545;
    font-size: 0.7rem;
    display: block;
    font-weight: 500;
    margin-top: 0.15rem;
    line-height: 1.2;
}

.fp-form__group .validation-error {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-top: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-form__group--has-toggle {
    position: relative;
}

.fp-form__toggle-btn {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-70%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-form__toggle-btn:hover {
    color: #357ABD;
}

.fp-form__group--has-toggle .fp-form__control {
    padding-right: 3rem;
}

.fp-actions__primary {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #4A90E2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.fp-actions__primary:hover {
    background: #357ABD;
}

.fp-links__back {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

.fp-links__back:hover {
    text-decoration: underline;
}