.formularios-post{
    margin: 2rem 20vw 4rem 25vw;
    padding:3rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.formularios-post__primero{
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
}

.formularios-post__titulo1{
    color:var(--gris2);
    padding-right:0.5rem;
    font-size: 2rem;
}

.formularios-post__titulo2{
    font-size: 2rem;
}

.formulario-post__contenido {
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.label {
    display: block;
    padding-bottom:0.5rem;
}

.input {
    box-sizing: border-box;
    width: 100%;
    border: none;
    background-color: white;
    resize:none;
}

.input:focus {
    outline: none;
}

div:focus-within {
    border: 1px solid var(--azul3);
}

div:focus-within label {
    color: var(--azul3);
}

.formularios__botones{
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.formularios__boton{
    width:65%;
}

.pdf{
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.mensaje{
    height:8rem;
}

#trucazo{
    opacity:0;
}

.wrapper{
    display: inline-flex;
    background: #fff;
    height: 30px;
    width: 350px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 15px;
}
.wrapper .option{
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 10px;
    border-radius: 25px;
    cursor: pointer;
    padding: 0 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
}
.wrapper .option .dot{
    height: 12px;
    width: 12px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}
.wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 1px;
    left: 1px;
    width: 10px;
    height: 10px;
    background: var(--azul3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
input[type="radio"]{
    display: none;
}
.span{
    padding-left: 0.2rem;
}
#option-1:checked:checked ~ .option-1,
  #option-2:checked:checked ~ .option-2{
    border-color: var(--azul3);
    background: var(--azul3);
}
#option-1:checked:checked ~ .option-1 .dot,
  #option-2:checked:checked ~ .option-2 .dot{
    background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
  #option-2:checked:checked ~ .option-2 .dot::before{
    opacity: 1;
    transform: scale(1);
}
.wrapper .option span{
    font-size: 20px;
    color: #808080;
}
#option-1:checked:checked ~ .option-1 span,
  #option-2:checked:checked ~ .option-2 span{
    color: #fff;
}

@media screen and (max-width:800px) {
    .formularios-post{
        margin: 1rem 5vw 4rem 5vw;
    }
    .formularios-post__primero{
        flex-direction: column;
    }
}

@media screen and (max-width:445px) {
    .label {
        font-size: 0.8rem;
    }
    .input {
        font-size: 0.8rem;
    }
}

@media screen and (max-width:355px) {
    .formularios-post__primero{
        align-items: start;
        padding-bottom: 1rem;
    }

    .formularios-post__titulo1{
        font-size: 1.5rem;
    }
    
    .formularios-post__titulo2{
        font-size: 1.5rem;
    }
}

