/* public/css/onboarding.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
}

.center-box {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onboarding-box {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.onboarding-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.onboarding-box p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.form-control {
    height: 48px;
    padding: 10px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: none;
}

.btn-primary {
    height: 48px;
    font-size: 1rem;
    border-radius: 8px;
    background-color: #4a90e2;
    border: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #357ABD;
}

.forgot-password {
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
}

.forgot-password:hover {
    color: #555;
    text-decoration: underline;
}

/* Step 2 Specific Styles */
.step-indicator {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    text-align: left;
}

.step2-box h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.option-card {
    flex: 1 1 calc(48% - 10px);
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.option-card.full {
    flex: 1 1 100%;
}

.option-card:hover {
    background-color: #e9f0fb;
    border-color: #4a90e2;
}

.option-card .icon {
    font-size: 1.4rem;
    margin-right: 12px;
}

.option-card .text {
    font-size: 1rem;
    color: #333;
}



