/* assets/css/style.css */
body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #111;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    background: #fff;
}

/* Header */
header {
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: #00c88f; /* Chime Green */
    letter-spacing: -1px;
}

/* Step Indicators */
.step-indicator-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
    transform: translateY(-50%);
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    position: relative;
    z-index: 1;
}

.step-circle.active {
    border-color: #00c88f;
    color: #00c88f;
    background: #fff;
}

.step-circle.completed {
    background: #00c88f;
    border-color: #00c88f;
    color: white;
}

/* Typography */
h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #111;
}

p.subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Forms */
.form-step {
    display: none;
    animation: slideUp 0.4s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

input, select {
    width: 100%;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #111;
    box-sizing: border-box;
    transition: all 0.2s;
}

input:focus, select:focus {
    outline: none;
    background: #fff;
    border-color: #00c88f;
    box-shadow: 0 0 0 3px rgba(0, 200, 143, 0.1);
}

/* Buttons */
.btn-next {
    width: 100%;
    padding: 18px;
    background: #00c88f; /* Chime Green */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 200, 143, 0.3);
}

.btn-next:hover {
    background: #00b07d;
}

/* Secure Lock */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.secure-note span {
    margin-right: 5px;
}

/* Waiting Page Styles */
.waiting-container {
    text-align: center;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00c88f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }