.formphp input, .formphp textarea {
    background-color: #ffffff00;
    border: none;
    border-bottom: 1px solid var(--branco);
    width: 300px;
    padding: 10px;
}
.radio input, .radio label {
    max-width: fit-content;
    cursor: pointer;
}
.radio input[type="radio"] {
    position: absolute;
    left: -5px;
    top: 3px;
    opacity: 0;
}
.custom-radio {
    width: 11px;
    height: 11px;
    border-radius: 30px;
    border: 1px solid var(--branco);
    cursor: pointer;
}
input[type='radio']:checked + .custom-radio {
    background-color: var(--branco);
}
.radio > div:hover input[type='radio']:checked + .custom-radio {
    background-color: var(--branco);
}
.form-block {
    max-width: fit-content;
    display: grid;
    justify-items: center;
}
.radio {
    max-width: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.radio > div {
    display: flex;
    gap: 2px;
    align-items: center;
    max-width: fit-content;
    min-width: fit-content;
    flex: 1;
    position: relative;
}
.radio > div:hover .custom-radio {
    background-color: #F2F2F280;
}
.formphp input:focus, .formphp textarea:focus {
    outline-color: var(--branco);
    outline-width: 1px;
}
.formphp textarea {
    resize: none;
    height: 60px;
}
.formphp input::placeholder, .formphp textarea::placeholder {
    font-style: italic;
    font-weight: 300;
    color: var(--branco);
}
.formphp label {
    color: #F2F2F280;
    font-style: italic;
}
.formphp {
    display: grid;
    justify-items: center;
    max-width: fit-content;
    gap: 20px;
    border: 1px solid var(--maincor);
    background: var(--maincor);
    padding: 70px 40px;
    box-shadow: 0px 0px 0px 15px var(--branco) inset;
}
.form1 {
    display: grid;
    width: 400px;
    justify-items: center;
    gap: 30px;
}

.formphp h4 {
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 500;
}
.formphp button {
    transition: .3s;
    margin-left: auto;
    padding: 10px;
    border-radius: 40px;
}
.formphp button:hover {
    cursor: pointer;
    box-shadow: 0px 0px 0px 30px var(--segcor) inset;
}


.formulario {
    display: grid;
    justify-items: center;
    padding: 90px 10px;
    padding-top: 0px;
}

@media only screen and (min-width:400px) and (max-width:530px) {

    .form1 {
        display: grid;
        width: 300px;
    }
    .formphp {
        padding: 30px;
    }
}

@media only screen and (min-width:310px) and (max-width:399px) {

    .form1 {
        display: grid;
        width: inherit;
    }
    .formphp {
        padding: 30px;
    }
    .formphp input, .formphp textarea {
        width: inherit;
    }
}

@media only screen and (min-width:0px) and (max-width:309px) {

    .form1 {
        display: grid;
        width: inherit;
    }
    .formphp {
        padding: 30px;
    }
    .formphp input, .formphp textarea {
        width: 180px;
    }
}