.form-section {
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.registro-container {
    width: 700px;
    background: white;
    padding: 0 40px;
    border-radius: 20px;
    text-align: center;
}

    .registro-container h2 {
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: 600;
    }

.input-box {
    border: none;
    border-radius: 3em;
    padding: 10px;
    font-size: 15px;
    background: var(--grisClaro);
    width: 100%;
    text-align: left;
    color: black;
    padding-left: 15px;
}

.form-control {
    border-radius: 20px;
    height: 45px;
    background: var(--grisClaro);
}

.checkbox-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #333;
}

.terms {
    color: white;
    font-size: 0.9rem;
    margin-top: 20px;
}

.btn {
    width: 25%;
    padding: 10px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
}

.input-error {
    border: 2px solid #ff4d4d !important;
    background-color: #ffe6e6;
}

.labelForm {
    margin-bottom: 10px;
    margin-top: 10px;
}

.perfil-container {
    padding: 2rem;
    margin-top: 20px;
}

.hidden {
    display: none !important;
}

.btnActualizarPerfil {
    display: flex;
    justify-content: center;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

    .password-wrapper .input-box {
        padding-right: 42px;
    }

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #6c757d;
}

    .toggle-password:hover {
        color: #000;
    }


@media (max-width: 768px) {
    .btn {
        width: 50%;
    }
}
