/* ForgotPassword page overrides */
.forgot-card {
    background: #ffffff;
    width: 500px;
    max-width: 100%;
    min-height: 380px;
    border-radius: 15px;
    padding: 42px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.forgot-card h1 {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 21px;
    margin-bottom: 8px;
}

.custom-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #e2e2e7;
    border-radius: 12px;
    height: 52px;
    overflow: hidden;
    background-color: #ffffff;
    direction: ltr;
    transition: var(--transition);
}

.custom-input-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 8px rgba(0, 51, 102, 0.1);
}

.country-code-section {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #fcfcfc;
    height: 100%;
    gap: 8px;
    font-weight: bold;
    border-right: 1px solid #e2e2e7;
}

.phone-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 0 15px;
    font-size: 14px;
    font-weight: bold;
    height: 100%;
    background: transparent;
    text-align: left;
    direction: ltr;
}

.back-link {
    margin-top: 25px;
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-orange, #f59e0b);
    text-decoration: none;
    display: inline-block;
}

.back-link:hover {
    opacity: 0.85;
    text-decoration: none;
}

.back-link a {
    color: var(--secondary-orange, #f59e0b);
    text-decoration: none;
}
