﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #8EC5FC 0%, #E0C3FC 100%);
}

.fp-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8EC5FC 0%, #E0C3FC 100%);
    font-family: 'Segoe UI', sans-serif;
}

.fp-card {
    background: #ffffff;
    width: 390px;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.30), 0 15px 35px rgba(0,0,0,0.20);
    text-align: center;
}

.fp-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.fp-input-group {
    position: relative;
    margin-bottom: 15px;
}

    .fp-input-group i {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: #9b59b6;
    }

    .fp-input-group input {
        width: 100%;
        padding: 13px 14px 13px 42px;
        border-radius: 14px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        font-size: 14px;
        transition: 0.3s;
    }

        .fp-input-group input:focus {
            outline: none;
            border-color: #a64ca6;
            box-shadow: 0 0 0 4px rgba(166,76,166,0.12);
            background: #fff;
        }

.fp-btn {
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #3FB8AF, #a64ca6);
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

    .fp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(166, 76, 166, 0.4);
    }

    .fp-btn:active {
        transform: translateY(2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    }

.fp-error {
    display: block;
    color: #e53935;
    font-size: 12px;
    margin-bottom: 12px;
}

.fp-info {
    background: #f3f9ff;
    border: 1px solid #6fb1fc;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #2c3e50;
}

.fp-links {
    margin-top: 25px;
    font-size: 14px;
}

    .fp-links a {
        color: #9b59b6;
        font-weight: 600;
        text-decoration: none;
    }

.fp-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #888;
}

.fp-success {
    background: #e9f9f0;
    border: 1px solid #28a745;
    color: #1e7e34;
}

.fp-error-box {
    background: #fdecea;
    border: 1px solid #e53935;
    color: #b71c1c;
}
