.forgot-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
    position: relative;
    z-index: 2;
}

.forgot-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(135deg, #0ea5a4 0%, #0b7c79 55%, #075e5c 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 40px 36px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.forgot-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
    opacity: 0.95;
}

.forgot-card h1 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
}

.forgot-description {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.forgot-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.form-group input {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.forgot-submit {
    height: 54px;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.forgot-submit:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.2);
}

.forgot-back {
    display: inline-block;
    margin-top: 22px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    opacity: 0.95;
}

.forgot-back:hover {
    text-decoration: underline;
}

.forgot-debug {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.forgot-debug a {
    color: #ffffff;
    text-decoration: underline;
}

.alert-error,
.alert-success {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
}

.alert-error {
    background: rgba(127, 29, 29, 0.22);
    border: 1px solid rgba(254, 202, 202, 0.28);
    color: #ffffff;
}

.alert-success {
    background: rgba(22, 101, 52, 0.22);
    border: 1px solid rgba(187, 247, 208, 0.28);
    color: #ffffff;
}

.alert-error p,
.alert-success p {
    margin: 0;
}

@media (max-width: 640px) {
    .forgot-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .forgot-card h1 {
        font-size: 32px;
    }

    .forgot-description {
        font-size: 15px;
    }
}