.test-comenzar {
    display: flex;
    align-items: center;
    transition: opacity .5s;
    height: 100%;
    gap: 1em;
    z-index: 4;
    padding: 2em 0;
}

/* LOGO 1 */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Aplicar la animación de rotación al SVG */
.logo-animado {
    animation: girarLetras 16s linear infinite;
}

/* Logo Imagen */
.logo-img1 {
    width: 150px;
    position: absolute;
    transform: translate(0%, -2%);
}

@keyframes girarLetras {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo svg {
    width: 300px;
    height: 300px;
}

.comenzar-text-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-4);
    font-size: 1em;
    gap: 1em;
}

.comenzar-text-form h2 {
    text-align: center;
}

.comenzar-text-form p {
    text-align: center;
    width: 80%;
}

.comenzar-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2em;
    width: 70%;
}

.comenzar-nombre {
    text-transform: capitalize;
}

.comenzar-form-politicas a {
    font-size: .8em;
    color: var(--cTextosNoTanImportan);
}

.comenzar-form-label {
    font-size: 1.2em;
    font-weight: 800;
    transform: translate(0, 120%);
    transition: transform .7s;
    text-align: center;
}

.comenzar-form-input {
    display: flex;
    align-items: center;
    z-index: 3;
    font-size: 1em;
    padding: 0.5em 0.8em;
    background-color: transparent;
    border: solid 1px var(--color-1);
    border-radius: 20px;
    outline: none;
    width: 100%;
    text-align: center;
}

.btn-comenzar {
    width: 40%;
}

/* Contenedor general */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
}

/* Ocultar el checkbox original */
/* Ocultar el checkbox original pero mantenerlo interactivo */
.custom-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Estilo del label */
.checkbox-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 1em;
    margin: 0.5em;
}

/* Cuadro del checkbox */
.checkbox-label::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-1);
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translate(0, -1px);
}

/* Estilo del checkbox marcado */
.custom-checkbox:checked+.checkbox-label::before {
    content: "✔";
    color: var(--color-4);
    background-color: white;
    border-color: var(--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hover efecto para el checkbox */
.checkbox-label:hover::before {
    border-color: var(--color-1);
    box-shadow: 0 0 5px var(--color-1);
}

/* Estilo para el enlace */
.checkbox-label a {
    color: var(--color-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    text-decoration: underline;
    color: var(--color-4);
}


@media (max-width: 1440px) {

    .comenzar-text-form {
        font-size: .9em;
    }

    .comenzar-form-input {
        font-size: .85em;
    }

    .comenzar-img img {
        width: 180px;
    }

    .logo svg {
        height: 290px;
    }
}

@media (max-width: 1024px) {
    .test-comenzar {
        flex-direction: column;
        padding-top: 4em;
    }

    .logo svg {
        height: 290px;
    }

    .comenzar-form {
        width: 80%;
    }

    .comenzar-form-input {
        width: 60%;
    }

    .comenzar-text-form {
        font-size: .62em;
    }

    .comenzar-img img {
        width: 150px;
    }

    .btn-comenzar {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .test-comenzar {
        flex-direction: column;
        padding-top: 3.5em;
    }

    .logo svg {
        height: 250px;
    }

    .comenzar-form {
        width: 80%;
    }

    .comenzar-form-input {
        width: 80%;
    }

    .comenzar-text-form {
        font-size: .62em;
    }

    .comenzar-img img {
        width: 120px;
    }
}

@media (max-width: 425px) {
    .test-comenzar {
        flex-direction: column;
        justify-content: unset;
        padding-top: 5em;
    }

    .logo svg {
        height: 200px;
    }

    .comenzar-form {
        width: 95%;
    }

    .comenzar-img img {
        width: 100px;
    }
}

@media (max-width: 375px) {
    .test-comenzar {
        flex-direction: column;
    }

    .comenzar-form {
        width: 90%;
    }

    .comenzar-form-label {
        font-size: .9em;
    }
}