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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    color: white;
    font-size: 2.5em;
    font-weight: bold;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.8em;
}

.form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.section {
    margin-bottom: 30px;
}

.section h3 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.form-grid {
    display: grid;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.input-group input,
.input-group select {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.choice-buttons {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.btn-choice {
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-choice:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.attestation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.attestation ul {
    margin-left: 20px;
    margin-top: 10px;
}

.attestation li {
    margin-bottom: 8px;
    color: #555;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message h2 {
    color: #28a745;
    margin-bottom: 20px;
}

.success-message p {
    color: #666;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .logo h1 {
        font-size: 2em;
    }
}

.redirect-message {
    color: #666;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message h2 {
    color: #28a745;
    margin-bottom: 20px;
}

.success-message p {
    color: #666;
    margin-bottom: 15px;
}