body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 1%;
    background-color: #f0f0f0;
    font-family: 'Nunito', sans-serif;
}

#smartwizard {
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.194);
    border-radius: 5px;
    font-size: 18px;
}

.nav-item {
    display: none;
}

.nav-item.active {
    display: block;
}

.sw-btn-group-extra {
    display: flex;
    justify-content: space-between;
}

.progress {
    height: 20px;
}

.progress-bar {
    height: 20px;
}

.password-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.password-container div {
    flex-grow: 1;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    transform: scale(1.5);
    /* Tamaño del checkbox */
}


input,
select {
    display: block;
    width: 100%;
    /* Inputs ocupan todo el ancho */
    padding: 10px;
    /* Padding para mas espacio a los input */
    margin-bottom: 5px;
    /* Margen debajo de input */
    border: 1px solid #ccc;
    /* Borde */
    border-radius: 5px;
    /* Redondea las esquinas */
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    /* Añade un pequeño margen */
    display: block;
    /* Hace que las etiquetas sean bloques para que los inputs aparezcan debajo de ellas */
}

#register-form {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

/* 3D buttons*/
.button-container button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 5px 3px 0 rgba(0,0,0,0.2), 0 2px 5px 0 rgba(0,0,0,0.19);
}

.button-container button[type="submit"] {
    background-color: #4CAF50;
}

.button-container button[type="button"] {
    background-color: #f44336;
}