body.home-page {
    margin: 0;
    min-height: 100vh;
    background: #eaeaed;
}

.forgot-main-container {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 64px 16px 80px;
    font-family: Foundation Sans, var(--default-font-family);
}

.forgot-main-container * {
    box-sizing: border-box;
}

.forgot-card {
    background: #ffffff;
    max-width: 760px;
    width: 100%;
    padding: 56px 64px 48px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.forgot-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 24px;
    color: #000000;
}

.forgot-intro {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 32px;
    color: #000000;
}

.forgot-form-group {
    margin-bottom: 24px;
}

.forgot-label {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.forgot-label .required {
    color: #c9102e;
    margin-left: 2px;
}

.forgot-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 2px;
    border: 2px solid #d0d0ce;
    font-size: 16px;
}

.forgot-input:focus {
    border-color: #027dba;
    outline: none;
}

.forgot-input.error {
    border-color: #c9102e;
}

.forgot-error-message {
    color: #c9102e;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
}

.forgot-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 32px;
}

.forgot-submit {
    padding: 10px 32px;
    background: #ffb81a;
    border-radius: 2px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.forgot-submit:hover {
    background: #555555;
    color: #ffffff;
}

.forgot-cancel {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
}

.forgot-cancel:hover {
    text-decoration: underline;
}

.forgot-help {
    font-size: 16px;
    color: #000000;
}

.forgot-help a {
    color: #027dba;
    text-decoration: underline;
}

.forgot-phone-link {
    color: #027dba;
    text-decoration: underline;
    font-weight: 400;
}

.forgot-signin-button {
    padding: 10px 32px;
    background: #ffb81a;
    border-radius: 2px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.forgot-signin-button:hover {
    background: #555555;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .forgot-card {
        padding: 32px 20px 32px;
    }

    .forgot-title {
        font-size: 28px;
    }

    .forgot-intro {
        font-size: 16px;
    }
}


