.shake {
    animation: shake 0.3s;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
.input-group{
    border: 0.1rem solid var(--color-steelblue);
}
.form-control{
    border: none;
    text-align: center;
}
.form-control:focus {
    box-shadow: none;
    border: none;
}
.prefix-icon{
    width: 2.7rem;
    border: none;
    border-right: .17rem solid var(--color-steelblue);
}
::placeholder, input {
    font-family: var(--font-base);
    font-weight: bold!important;
    font-size: .8rem!important;
    text-align: center!important;
}
textarea {         
    resize: none;
    height: 7rem;
    font-weight: bold;
    font-family: var(--font-base);
    font-size: .8rem!important;
    text-align: left!important;
}
input[type="radio"] {
    margin: 0;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #9CA3AF;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input[type="radio"]:checked {
    border-color: var(--color-steelblue);
    background-color: transparent;
    box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.2); /* <- add this */
}
input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--color-steelblue);
}
.form-check-label{
    cursor: pointer;
}
.shake {
    --color-steelblue: var(--color-red);
}
.grecaptcha-badge {
    visibility: hidden;
}