:root {
    --primary: #FF6B6B;
    --primary-dark: #e85a5a;
    --secondary: #000000;
    --background: #FAF5F2;
    --text: #2D3436;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #FFD93D;
    bottom: -50px;
    left: -50px;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

/* Container */
.form-container {
    background: var(--glass);
    backdrop-filter: blur(10px);
    width: 90%;
    max-width: 550px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

header {
    margin-bottom: 30px;
}

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

.logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 5px;
}

.logo .subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.progress-container {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 10%;
    background: var(--primary);
    transition: width 0.4s ease;
}

/* Form Steps */
.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

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

h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary);
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #636e72;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 2px solid #EAEAEA;
    border-radius: 12px;
    background: white;
    font-size: 15px;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.options-grid.horizontal {
    grid-template-columns: 1fr 1fr;
}

.field-group {
    margin-top: 25px;
}

.option-card {
    position: relative;
    padding: 15px;
    border: 2px solid #EAEAEA;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.option-card span {
    font-weight: 500;
    display: block;
    text-align: center;
}

.option-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(255, 107, 107, 0.05);
    color: var(--primary);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

button {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.btn-next, .btn-submit {
    background-color: var(--primary);
    color: white;
}

.btn-next:hover, .btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-prev {
    background-color: #EAEAEA;
    color: #636e72;
}

.btn-prev:hover {
    background-color: #d1d1d1;
}

.hidden { display: none; }

#successStep {
    text-align: center;
}

.success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }
}
