/* css/style.css */
:root {
    --bg-color: #FFFFFF;
    --text-color: #111111;
    --accent-gray: #F5F5F5;
    --border-color: #E5E5E5;
    --spacing-unit: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
h1 {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: var(--spacing-unit);
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Header */
.header {
    margin-bottom: 40px;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: var(--accent-gray);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #444;
}

.lock-icon {
    font-size: 1.2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

input, select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #CCC;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-bottom: 2px solid var(--text-color);
}

.helper-text {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #888;
}

.select-wrapper {
    position: relative;
}
/* Custom dropdown arrow if needed, keeping simple for now */

/* Buttons */
.btn-main {
    width: 100%;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.1s ease;
}

.btn-main:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 40px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* Success State */
.success-content {
    text-align: center;
    padding-top: 40px;
}

.check-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    text-align: left;
    margin: 40px 0;
    border-left: 2px solid #EEE;
    padding-left: 30px;
    position: relative;
}

.step {
    position: relative;
    margin-bottom: 30px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -37px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--text-color);
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 1px #EEE;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-text strong {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-text span {
    font-size: 0.9rem;
    color: #777;
}

/* Utilities */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 375px) {
    h1 { font-size: 1.8rem; }
}
