.gridContent{
    margin-top: 20px;
}
.formImage{
    display: none;
    width: 90%;
    margin: 0 auto;
    max-width: 600px;
}
fieldset{
    outline: none;
    border: none;
    margin-top: 10px;
}
.customInput,.customTextArea{
    border-radius: 5px;
    background-color: var(--blackOp07);
    padding: 0 15px;
    height: 45px;
    outline: none;
    border: 1px solid transparent;
    transition: border .4s;
    width:100%;
}
.customInput:hover,.customInput:focus,.customTextArea:hover,.customTextArea:focus{
    border: 1px solid var(--blueClr2);
}
.customTextArea{
    height: 180px;
    padding: 15px;
    resize: none;
}
.customInput::placeholder,.customTextArea::placeholder{
    color: var(--clrA);
}
.customInput:-webkit-autofill,
.customInput:-webkit-autofill:hover,
.customInput:-webkit-autofill:focus,
.customTextArea:-webkit-autofill,
.customTextArea:-webkit-autofill:hover,
.customTextArea:-webkit-autofill:focus{
  -webkit-box-shadow: 0 0 0px 1000px var(--bgClr2) inset !important;
  border: 1px solid var(--blackOp1E);
}
.submitRepairForm{
    height: 45px;
    background-color: var(--blueClr7);
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color .4s;
}
.submitRepairForm:hover{
    background-color: var(--blueClr6);
}
@media screen and (min-width:769px) {
    .gridContent{
        margin-top: 120px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 20px;
    }
    .formImage{
        display: unset;
    }
    .submitRepairForm{
        width: 180px;
        margin-right: auto;
    }
}
.captchaPic{
    height: 50px;
}
.captchaGrid{
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.hintText{
    color: var(--bgClr2);
    background-color: var(--redClr);
    padding: 5px 10px;
    border-radius: 3px;
    animation: pulse 1s linear infinite alternate-reverse;
}
.hintText.green{
    background-color: var(--greenClr);
}