.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 32px 16px;
    border-radius: 10px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content label {
    display: block;
    /* margin-top: 10px; */
    font-weight: bold;
}

.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 8px;
    /* margin-top: 5px;
    margin-bottom: 15px; */
    border: 1px solid #ccc;
    /* border-radius: 4px; */
    resize: vertical;
}

.modal-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.modal-buttons button {
    padding: 8px 10px;
    font-size: 14px;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
}

#sendRequestButton {
    background-color: #348046;
    color: white;
}

#sendRequestButton:hover {
    background-color: #065F31;
}

#cancelButton {
    background-color: #BA172C;
    color: white;
}

#cancelButton:hover {
    background-color: #871020;
}

#support-error {
  margin-top: 10px;
  font-size: 0.9em;
  color: #d9534f;
}



#captcha-picture{
    margin: 6px 0;
}

.duble{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
}

.duble button,input{
    /*width: 100%;*/
    font-size: 14px;
    padding: 6px;
}

._input {
    border-radius: 5px;
    border-color: #bdbdbd;
}
._input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #bdbdbd;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.25);
    border-radius: 5px;
}