.body{
    font-family: Arial, sans-serif;
}

.m-top1{
    margin-top: 2rem;
}
.m-top2{
    margin-top: 1rem;
}
.pad-20{
    padding: 20px;
}
.logoSVG{
    width: 100%;
    height: 100%;
}

.logoParka{
    width: 80%;
    height: 100%;
}

.logoAAA{
    width: 100%;
    height: 100%;
}

.center{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    
}

.card-custom{
    padding: 15px;
    border: solid 1.5px #e0e0e0;
    background-color: rgba(63, 58, 96, 0.6); /* 60% de opacidad */
}
.w-70{
    width: 70%;
}

.bold{
    font-weight: bold;
}

.thin{
    font-weight: thin;
}

.fsize1{
    font-size: 1.7rem;
}

.fsize2 .fsize4{
    font-size: 1.3rem;
}

.img-product{
    width: 100%;
    height: auto;
}

.btn-continue{
    padding: 5px;
    border: transparent;
    background-color: rgba(63, 58, 96);
}
/* Oculta el radio button predeterminado */
.form-check-input {
    appearance: none; 
    width: 20px;
    height: 20px;
    border: 2px solid white; /* Borde blanco */
    border-radius: 4px; /* Bordes ligeramente redondeados (puedes poner 0 para que sean completamente cuadrados) */
    background-color: transparent;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Estilos cuando está seleccionado */
.form-check-input:checked {
    background-color: white; /* Fondo blanco al seleccionar */
    border-color: white;
}

/* Agregar la palomita blanca dentro */
.form-check-input:checked::after {
    content: "✔"; /* Símbolo de palomita */
    font-size: 16px;
    color: #3f3a60; /* Color de la palomita */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid white;
    background-color: rgba(63, 58, 96);
    color: white;
    font-size: 16px;
}
input[type="checkbox"] {
    margin-right: 10px;
}



@media (max-width: 932px) { 
    .fsize1{
        font-size: 1.2rem;
    }
    
    .fsize2{
        font-size: 0.8rem;
    }
    .fsize3{
        font-size: 0.7rem;
    }
    .fsize4{
        font-size: 1rem;
    }
    .img-product{
        width: 130%;
        height: auto;
    }
    .pad-20{
        padding: 15px;
    }
}
