body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 150px;
}

.container {
    width: 90%;
    max-width: 500px;
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 9px 9px 16px #d1d9e6, -9px -9px 16px #f9f9f9;
}

.title {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #3a506b;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"], select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #f9f9f9;
    font-size: 1em;
    outline: none;
    box-sizing: border-box;
}

.radio-group {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.radio-label {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #f9f9f9;
    transition: all 0.3s ease;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-label {
    box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #f9f9f9;
    color: #0367a6;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    color: #333;
    transition: all 0.3s ease;
}

.btn:hover {
    color: #0367a6;
}

.btn:active {
    box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #f9f9f9;
}

#submit-btn {
    background-color: #4caf50; /* Un color de acento para el botón final */
    color: white;
}
#submit-btn:hover {
    background-color: #45a049;
}