:root {
    --primary-color: #24184a;
    --secondary-color: #E37302;
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-900: #111827;
}

/* Organization Registration Section */
.org-registration-section {
    background: url(../customer/images/login-bg.png) no-repeat center / cover;
    min-height: 100vh;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-registration-container {
    max-width: 62rem;
    width: 100%;
    margin: 2rem auto;
}

.org-registration-form {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 3rem 2rem;
}

.org-registration-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* Form Elements */
.org-form-group {
    position: relative;
    margin-bottom: 2rem;
}

.org-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.org-form-input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out;
}

.org-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(36, 24, 74, 0.1);
}

.org-form-input.is-invalid {
    border-color: var(--error-color);
    background-color: rgba(220, 53, 69, 0.05);
}

/* Password Fields */
.org-password-wrapper {
    position: relative;
}

.org-reg-password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    padding: 0.25rem;
    z-index: 1;
}

.org-reg-password-toggle:hover {
    color: var(--primary-color);
}

.org-reg-strength-meter {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;}

.org-reg-password-match-icon {
    position: absolute;
    right: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Select Inputs */
.org-select-input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    appearance: none;
    background-color: white;
}

.org-select-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(36, 24, 74, 0.1);
}

.org-select-input:disabled {
    background-color: var(--gray-100);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Error Messages */
.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



/* Checkbox */
.org-checkbox-container {
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.org-checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 0.125rem;
}

.org-checkbox-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    cursor: pointer;
    user-select: none;
}

.org-checkbox-label .inner-text {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Submit Button */
.org-submit-btn {
    width: 100%;
    padding: 1rem;
    background:var(--primary-color) ;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.org-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 115, 2, 0.2);
}

.org-submit-btn:active {
    transform: translateY(0);
}

/* Login Link */
.org-login-link {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.org-login-link a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem;
    transition: color 0.2s ease;
}

.org-login-link a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .org-registration-form {
        padding: 2rem 1.5rem;
    }

    .org-registration-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .org-registration-section {
        padding: 1rem;
    }

    .org-registration-form {
        padding: 1.5rem 1rem;
    }

    .org-registration-title {
        font-size: 1.5rem;
    }

    .org-form-group {
        margin-bottom: 1.5rem;
    }
}
