/* * SaaS Website Sekolah - Base Styles
 */

.saas-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 30px;
    max-width: 450px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.saas-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.saas-form-group {
    margin-bottom: 18px;
}

.saas-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #4a4a4a;
    font-size: 14px;
}

.saas-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.saas-form-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.saas-btn {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.saas-btn:active {
    transform: scale(0.98);
}

.saas-btn-primary {
    background: #0073aa;
    color: #ffffff;
    width: 100%;
}

.saas-btn-primary:hover {
    background: #005a87;
    color: #ffffff;
}

.saas-btn-danger {
    background: #ef4444;
    color: #ffffff;
}

.saas-btn-danger:hover {
    background: #dc2626;
    color: #ffffff;
}

.saas-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.saas-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.saas-alert-info {
    background: #f0f9ff;
    color: #075985;
    border: 1px solid #bae6fd;
}

/* PORTAL BUILDER STYLES */
.saas-portal-wrapper {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.saas-portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.onboarding-wizard {
    max-width: 700px;
}

.wizard-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.api-key-box {
    background: #1e293b;
    color: #4ade80;
    padding: 15px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
    user-select: all;
    text-align: center;
}

.builder-status-bar {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-bottom: none;
}

/* GRAPESJS OVERRIDES */
#gjs {
    border: 1px solid #e5e7eb;
    border-radius: 0 0 8px 8px;
}
.gjs-cv-canvas {
    background-color: #ffffff;
}