/* ── Wrapper ── */
.forgot-wrapper,
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}

/* ── Card ── */
.forgot-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10);
    display: flex;
    width: 100%;
    max-width: 960px;
    min-height: 500px;
    overflow: hidden;
}

/* ── Left: Video ── */
.forgot-left {
    width: 380px;
    flex-shrink: 0;
    background: var(--grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.forgot-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Divider ── */
.forgot-divider {
    width: 1px;
    background: var(--grey-light);
    align-self: stretch;
    flex-shrink: 0;
}

/* ── Right: Form ── */
.forgot-right {
    flex: 1;
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Title ── */
.forgot-title {
    font-size: 42px;
    font-weight: 800;
    font-style: italic;
    color: var(--green);
    margin: 0 0 6px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* ── Subtitle ── */
.forgot-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-mid);
    margin: 0 0 28px 0;
}

/* ── Instruction ── */
.forgot-instruction {
    font-size: 13px;
    color: var(--grey-mid);
    margin: 0 0 14px 0;
}

/* ── Label ── */
.forgot-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

/* ── Input ── */
.forgot-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.forgot-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(8, 120, 50, 0.10);
    background: #fff;
}

.forgot-input::placeholder {
    color: #c0c0c0;
}

/* ── Send Button ── */
.btn-send {
    width: 100%;
    padding: 13px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
}

.btn-send:hover  { background: var(--green-dark); }
.btn-send:active { transform: scale(0.99); }

/* ── Back Link ── */
.forgot-back {
    display: block;
    text-align: left;
    margin-top: 18px;
    font-size: 13px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.forgot-back:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

/* ── Success Message ── */
.forgot-success {
    display: none;
    background: #f0fdf4;
    border-left: 4px solid #28a745;
    color: #166534;
    border-radius: 6px;
    padding: 8px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
}

.forgot-success.show { display: block; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .forgot-card      { flex-direction: column; max-width: 480px; margin: auto; }
    .forgot-left      { width: 100%; min-height: 220px; flex-shrink: unset; }
    .forgot-divider   { width: 100%; height: 1px; }
    .forgot-right     { padding: 36px 24px; }
    .forgot-title     { font-size: 34px; }
}