.cardMe__content{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.cardMe{
    width: 400px;
    display: flex;
    justify-content: center;
    align-items:flex-start;
    flex-direction: column;
    margin-top: 10px;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: var(--bg-contenedor-dark);
}

.cardMe>h4{
    width: 100%;
    margin-bottom: 30px;
    color: var(--color-title-dark);
    align-self: flex-start;
}

.cardMe>label{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-title-dark);
    gap: 10px;
    margin-bottom: 10px;
}

.cardMe>label>input{
    height: 30px;
    width: 60%;
}

.cardMe>button{
    height: 35px;
    background-color: var(--bg-principal-dark);
    color: var(--color-title-dark);
    border: none;
    border-radius: 2px;
    width: 100%;
    cursor: pointer;
}

.cardMe__checkboxs{
    width: 400px;
}

.cardMe__checkboxs>h4{
    color: var(--color-title-dark);
    margin-bottom: 10px;
}

.cardMe__checkboxs>div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    box-sizing: border-box;
}

.cardMe__checkboxLabel{
    color: var(--color-title-dark);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.cardMe__checkboxLabel>select{
    width: 100%;
    height: 35px;
    margin-top: 5px;
}

.cardMe__checkboxLabel>div{
    width: 60px;
    border-radius: 30px;
    height: 30px;
    margin-top: 5px;
    cursor: pointer;
    background-color: var(--bg-contenedor-dark);
}

.cardMe__checkboxLabel>div>label{
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: var(--bg-principal-dark);
    border-radius: 30px;
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
}

.cardMe__checkboxLabel>div>label:hover{
    transform: translateX(10%);
    transition: all 0.5s ease-in-out;
}

.cardMe__checkboxLabel>div>input{
    display: none;
}