* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --orange: #ff5a00;
    --orange2: #ff7a1a;
    --bg: #05090b;
    --card: rgba(255, 255, 255, .06);
    --border: rgba(255, 255, 255, .12);
    --text: #c9c9c9;
    --title: #f5f1ea;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255, 90, 0, .18), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 90, 0, .08), transparent 35%),
        linear-gradient(135deg, #05090b, #071014);
    color: white;
    display: grid;
    place-items: center;
    padding: 20px;
}

.forgot-card {
    width: 100%;
    max-width: 520px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--card), rgba(255, 255, 255, .025));
    border: 1px solid var(--border);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
    position: relative;
    overflow: hidden;
}

.forgot-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 90, 0, .35), transparent 65%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
    position: relative;
    z-index: 2;
}

.logo-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(255, 90, 0, .32);
}

.logo-text strong {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--text);
    font-size: 12px;
}

.tag {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

h1 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 6vw, 50px);
    font-weight: 500;
    color: var(--title);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

label {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 8px;
}

input {
    width: 100%;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    color: white;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    transition: .25s;
}

input::placeholder {
    color: #777;
}

input:focus {
    border-color: rgba(255, 90, 0, .65);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, .12);
}

.btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: white;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(255, 90, 0, .25);
    transition: .25s;
    margin-top: 8px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(255, 90, 0, .34);
}

.back-login {
    display: block;
    text-align: center;
    margin-top: 22px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: .25s;
}

.back-login:hover {
    color: var(--orange);
}

.help-box {
    margin-top: 24px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 90, 0, .10);
    border: 1px solid rgba(255, 90, 0, .25);
    color: #ffb27a;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 520px) {
    .forgot-card {
        padding: 30px 24px;
    }

    h1 {
        font-size: 38px;
    }
}