
.supportForms h1 {
    font-size: 35px;
}
.supportForms h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.supportForms p {
    text-align: left;
}
.supportForms form {
    padding: 20px;
    background: #FFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}
.supportForms form input, .supportForms form textarea {
    background: #FFF;
    border-radius: 3px;
    padding: 4px 5px;
    width: 98%;
}
.supportForms form textarea {
    width: 99%;
    height: 110px;
}
.supportForms .row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.supportForms .row .col-sm-6 {
    width: 50%;
}
.supportForms .columns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.supportForms .columns input {
    width: 99%;
}
.supportForms input:invalid:focus {
    border: solid #000 1px !important;
    box-shadow: none !important;
    color: #000;
}
.supportForms input[type="file"] {
    border: solid #CCC 1px;
    padding: 3px 5px;
    border-radius: 3px;
}
.supportForms.licence h1 {
    color: #B4D234;
}
.supportForms.licence input[type="submit"], .supportForms.fines input[type="submit"] {
    background-color: #B4D234;
    color: #FFF;
    width: 100%;
    border-radius: 5px;
    box-shadow: none;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 0;
    border: none;
}
.supportForms.fines h1 {
    color: #E63994;
}
.supportForms.fines input[type="submit"] {
    background-color: #E63994;
}
.supportForms ::-webkit-outer-spin-button,
.supportForms ::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.supportForms [type=number] {
    -moz-appearance:textfield;
}
.formPopup {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.formPopup > div {
    max-width: 250px;
    background: #FFF;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
}
.formPopup > div h1 {
    margin-top: 0px;
}
.formPopup > div p {
    text-align: center;
}
.formPopup #closeBtn, .formPopup #closeError {
    width: 100%;
    background: #B4D234;
    color: #FFF;
    font-weight: bold;
    padding: 5px 0;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
}
.supportForms.fines .formPopup #closeBtn {
    background-color: #E63994;
}

.formPopup.error > div {
    background-color: #C80000;
}
.formPopup.error h1, .formPopup.error p {
    color: #FFF;
}
.formPopup.error button#closeError {
    background-color: #FFF !important;
    color: #C80000;
}