/* NGO Registration Landing Page */

.ngo-body {
    background: #f8fafc;
    font-family: inherit;
    min-height: 100vh;
}

/* Header */
.ngo-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ngo-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ngo-header__logo img {
    height: 36px;
    width: auto;
}

.ngo-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ngo-header__login-text {
    color: #64748b;
    font-size: 14px;
}

/* Buttons */
.ngo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 15px;
}

.ngo-btn--outline-sm {
    padding: 8px 20px;
    border: 1.5px solid #0A65CC;
    color: #0A65CC;
    background: transparent;
}

.ngo-btn--outline-sm:hover {
    background: #0A65CC;
    color: #fff;
}

.ngo-btn--primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, #0A65CC, #0d4e96);
    color: #fff;
    font-size: 16px;
}

.ngo-btn--primary:hover {
    background: linear-gradient(135deg, #0d4e96, #0A65CC);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 101, 204, 0.3);
}

.ngo-btn--primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ngo-btn--full {
    width: 100%;
}

.ngo-btn__loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ngo-spinner {
    animation: ngo-spin 1s linear infinite;
}

@keyframes ngo-spin {
    to { transform: rotate(360deg); }
}

/* Hero */
.ngo-hero {
    padding: 60px 0 40px;
}

.ngo-hero__content {
    padding-right: 40px;
}

.ngo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #047857;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ngo-hero__badge-icon {
    display: flex;
    align-items: center;
}

.ngo-hero__badge-icon svg {
    stroke: #047857;
    width: 18px;
    height: 18px;
}

.ngo-hero__title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
    margin-bottom: 20px;
}

.ngo-hero__title-highlight {
    color: #0A65CC;
    display: block;
}

.ngo-hero__subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.ngo-hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ngo-hero__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #334155;
    font-weight: 500;
}

/* Form Card */
.ngo-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.ngo-form-card__header {
    margin-bottom: 28px;
}

.ngo-form-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.ngo-form-card__subtitle {
    font-size: 14px;
    color: #64748b;
}

.ngo-form__group {
    margin-bottom: 20px;
}

.ngo-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.ngo-form__input,
.ngo-form__textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ngo-form__input:focus,
.ngo-form__textarea:focus {
    outline: none;
    border-color: #0A65CC;
    box-shadow: 0 0 0 3px rgba(10, 101, 204, 0.1);
}

.ngo-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.ngo-form__password-wrapper {
    position: relative;
}

.ngo-form__password-wrapper .ngo-form__input {
    padding-right: 44px;
}

.ngo-form__password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
}

.ngo-form__char-count {
    text-align: right;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.ngo-form__error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
    min-height: 0;
}

.ngo-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.ngo-form__checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.ngo-form__checkbox a {
    color: #0A65CC;
    font-weight: 600;
}

/* Success state */
.ngo-form-card__success {
    text-align: center;
    padding: 40px 20px;
}

.ngo-success__icon {
    margin-bottom: 20px;
}

.ngo-form-card__success h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.ngo-form-card__success p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Steps Section */
.ngo-steps {
    padding: 60px 0;
    background: #fff;
}

.ngo-steps__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
}

.ngo-steps__card {
    text-align: center;
    padding: 32px 24px;
}

.ngo-steps__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A65CC, #0d4e96);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ngo-steps__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.ngo-steps__card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

/* FAQ Section */
.ngo-faq {
    padding: 60px 0;
    max-width: 720px;
    margin: 0 auto;
}

.ngo-faq__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
}

.ngo-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.ngo-faq__question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ngo-faq__question svg {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.ngo-faq__item.active .ngo-faq__question svg {
    transform: rotate(180deg);
}

.ngo-faq__answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.ngo-faq__item.active .ngo-faq__answer {
    display: block;
}

/* Footer */
.ngo-footer {
    padding: 24px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 991px) {
    .ngo-hero {
        padding: 40px 0 30px;
    }

    .ngo-hero__content {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .ngo-hero__title {
        font-size: 32px;
    }

    .ngo-header__login-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .ngo-hero__title {
        font-size: 28px;
    }

    .ngo-form-card {
        padding: 24px;
    }

    .ngo-steps__title,
    .ngo-faq__title {
        font-size: 24px;
    }
}
