/* Root Variables */
:root {
    --primary-color: #4e73df;
    --secondary-color: #f8f9fc;
    --text-color: #333;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color:rgb(193, 192, 173);

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color var(--transition);
}

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

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition);
}

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

.btn.next:hover {
    background-color: #2e59d9;
}

.btn.back {
    background-color: #6c757d;
}

.btn.back:hover {
    background-color: #5a6268;
}

/* Responsive */
@media (max-width: 480px) {
    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
