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

    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: #e6e8eb;
    }

    .recover-page {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 67% 33%;
        background: #e6e8eb;
    }

    .recover-hero {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(6, 12, 23, 0.4) 0%, rgba(6, 12, 23, 0.9) 100%),
            radial-gradient(circle at 40% 25%, rgba(255, 160, 90, 0.35), transparent 45%),
            radial-gradient(circle at 60% 68%, rgba(101, 47, 187, 0.35), transparent 40%),
            url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?auto=format&fit=crop&w=1800&q=80');
        background-size: cover;
        background-position: center;
    }

    .recover-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(1, 11, 25, 0.72) 82%);
    }

    .recover-copyright {
        position: absolute;
        left: 34px;
        bottom: 26px;
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.94);
        z-index: 1;
    }

    .recover-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 46px 36px;
        background: #e6e8eb;
    }

    .recover-card {
        width: min(520px, 100%);
        color: #2f3a49;
    }

    .recover-title {
        margin: 0;
        font-size: clamp(24px, 2vw, 32px);
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: 0.2px;
        color: #2e3a48;
    }

    .recover-subtitle {
        margin: 7px 0 28px;
        font-size: 16px;
        color: #556273;
    }

    .recover-form {
        display: grid;
        gap: 14px;
    }

    .recover-alert {
        margin: 0;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
    }

    .recover-alert.ok {
        border: 1px solid #86efac;
        background: #dcfce7;
        color: #166534;
    }

    .recover-alert.err {
        border: 1px solid #ef4444;
        background: #fee2e2;
        color: #991b1b;
    }

    .recover-input {
        width: 100%;
        border: 1px solid #cfd5dd;
        border-radius: 12px;
        background: #ffffff;
        padding: 14px 14px;
        font: inherit;
        font-size: 16px;
        color: #283443;
        box-sizing: border-box;
        outline: 0;
    }

    .recover-input::placeholder {
        color: #808996;
    }

    .recover-input:focus {
        border-color: #7eaed3;
        box-shadow: 0 0 0 3px rgba(126, 174, 211, 0.2);
    }

    .recover-actions {
        margin-top: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .recover-btn {
        border: 0;
        border-radius: 12px;
        background: #95c8e7;
        color: #174d73;
        font: inherit;
        font-size: 14px;
        font-weight: 700;
        padding: 10px 20px;
        cursor: pointer;
    }

    .recover-link {
        color: #1f6fab;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
    }

    .recover-link:hover {
        text-decoration: underline;
    }

    @media (max-width: 1050px) {
        .recover-page {
            grid-template-columns: 1fr;
        }

        .recover-hero {
            min-height: 34vh;
        }

        .recover-panel {
            min-height: 66vh;
            padding: 28px 20px 38px;
        }

        .recover-copyright {
            left: 20px;
            bottom: 18px;
            font-size: 18px;
        }

        .recover-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .recover-btn {
            width: 100%;
            text-align: center;
        }
    }
