/* Enrollment & Registration Forms */

.sk-enrollment-wrap {
    width: 100%;
}

.sk-form .sk-form-row {
    margin-bottom: 16px;
}

.sk-form .sk-form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.sk-form .sk-form-row label .required {
    color: #e74c3c;
}

.sk-form .sk-form-row label small {
    font-weight: 400;
    color: #888;
}

.sk-form .sk-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color .2s;
    box-sizing: border-box;
}

.sk-form .sk-input:focus {
    border-color: var(--sk-primary, #1A4D95);
    outline: none;
}

.sk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.sk-btn-primary {
    background: var(--sk-primary, #1A4D95);
    color: #fff;
    width: 100%;
    justify-content: center;
}

.sk-btn-primary:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.sk-btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.sk-btn-outline {
    background: #fff;
    color: var(--sk-primary, #1A4D95);
    border: 2px solid var(--sk-primary, #1A4D95);
    width: 100%;
    justify-content: center;
}

.sk-btn-outline:hover {
    background: var(--sk-primary, #1A4D95);
    color: #fff;
}

/* Alerts */
.sk-alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.sk-alert i {
    font-size: 20px;
    margin-right: 4px;
}

.sk-alert strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.sk-alert p {
    margin: 4px 0 0;
}

.sk-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.sk-alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.sk-alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

/* Post-enrollment prompt */
.sk-enrollment-next {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.sk-enrollment-next p {
    margin-bottom: 16px;
    color: #555;
}

.sk-enrollment-skip {
    font-size: 13px !important;
    color: #999 !important;
    margin-top: 12px !important;
}

/* Form note */
.sk-form-note {
    text-align: center;
    margin-top: 16px;
    color: #888;
    font-size: 14px;
}

.sk-form-note a {
    color: var(--sk-primary, #1A4D95);
    font-weight: 600;
}

/* Spinner for loading state */
.sk-btn .sk-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sk-spin .6s linear infinite;
}

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