.org-reset-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 1rem;
}

.org-reset-wrapper {
    max-width: 28rem;
    width: 100%;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

.org-reset-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

.org-reset-form-group {
    margin-bottom: 1.5rem;
}

.org-reset-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.org-reset-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.15s ease-in-out;
}

.org-reset-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(36, 24, 74, 0.1);
}

.org-reset-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.org-reset-button:hover {
    background-color: #1a1236;
}

.org-reset-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 24, 74, 0.3);
}

/* Password Requirements Styling */
.org-reset-requirements {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.org-reset-requirement {
    margin: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--gray-600);
}

.org-reset-requirement::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--gray-300);
}

.org-reset-requirement.valid {
    color: var(--success-color);
}

.org-reset-requirement.valid::before {
    background-color: var(--success-color);
}

.org-reset-requirement.invalid {
    color: var(--gray-500);
}

/* Alert Styling */
.org-reset-alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.org-reset-alert-danger {
    background-color: var(--error-bg);
    color: var(--error-color);
    border: 1px solid var(--error-border);
}

.org-reset-alert-success {
    background-color: var(--success-bg, #f0fdf4);
    color: var(--success-color, #16a34a);
    border: 1px solid var(--success-border, #bbf7d0);
}

/* Error Page Styling */
.org-reset-error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 1rem;
}

.org-reset-error-wrapper {
    max-width: 28rem;
    width: 100%;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    text-align: center;
}

.org-reset-error-icon {
    font-size: 3rem;
    color: var(--error-color);
    margin-bottom: 1rem;
}

.org-reset-error-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.org-reset-error-message {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.org-reset-error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.org-reset-error-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.org-reset-error-button:not(.secondary) {
    background-color: var(--primary-color);
    color: white;
}

.org-reset-error-button:not(.secondary):hover {
    background-color: #1a1236;
}

.org-reset-error-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.org-reset-error-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}
