.wizard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f5f6f7;
    border-radius: 14px;
    /* border: solid 1px rgb(229 231 235 / .5); */
}

.registration-wizard-left {
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 100%;*/
    flex-direction: column;
}

#registration-wizard {
    background-color: #fff !important;
    border: solid 1px rgb(229 231 235 / .5);
    padding: 3rem;
    margin: 0rem 0 2rem 0rem;
    display: block;
    width: 600px;
    border-radius: 20px;
    box-shadow: 6px 6px 6px 0px rgba(199, 12, 63, 0.5);
}

.datos-extras {
    border: dotted 2px red;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 2rem 0rem;
}

.datos-extras p {
    margin-bottom: 0;
    font-size: 1.5rem;
}


#cumpleannos {
    display: flex;
    gap: 20px;
}

#cumpleannos div {
    display: flex;
    flex-direction: column;
    /* Alinea el select y el mensaje verticalmente */
    align-items: center;
    /* Centra los elementos si es necesario */
}


#cumpleannos select {
    display: block;
    width: 155px;
    /* Asegura que los selects tengan el mismo ancho */
}

#intereses {
    height: 200px;
}

#wizard-image-container {
    flex: 1;
    text-align: center;
    height: 100%;
}

.wizard-step label {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: bold;
}


#wizard-step-image {
    height: 100% !important;
    object-fit: cover !important;
    width: 100%;
    display: block;
    border-top-left-radius: 10%;
    border-bottom-left-radius: 10%;

}

.login-custom {
    background-color: #fff !important;
    border: solid 1px rgb(229 231 235 / .5);
    padding: 3rem;
    margin: 3rem 3rem !important;
    display: block;
    width: auto !important;
    border-radius: 20px;
    box-shadow: 6px 6px 6px 0px rgba(199, 12, 63, 0.5);
    margin: 0 auto;
    display: block;
    position: absolute;
}

#registration-wizard .input-error {
    border: 1px solid red;
    background-color: #ffe6e6;
}

#registration-wizard .error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

@media screen and (max-width: 768px) {


    .login-custom {
        background-color: #fff !important;
        border: solid 1px rgb(229 231 235 / .5);
        padding: 3rem;
        margin: 3rem 3rem !important;
        display: block;
        width: auto !important;
        border-radius: 20px;
        box-shadow: 6px 6px 6px 0px rgba(199, 12, 63, 0.5);
        margin: 0 auto;
        display: block;
        position: absolute;
    }

    
    #cumpleannos {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .wizard-container {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-between;
        align-items: flex-start;
        background-color: #f5f6f7;
        border-radius: 14px;
        border: solid 1px rgb(229 231 235 / .5);
    }

    #registration-wizard {
        background-color: #fff !important;
        border: solid 1px rgb(229 231 235 / .5);
        padding: 3rem;
        margin: 0 auto;
        display: block;
        width: 90%;
        border-radius: 20px;
        box-shadow: 6px 6px 6px 0px rgba(199, 12, 63, 0.5);
    }
}