.student-helpdesk-section .helpdesk-form {
    width: min(760px, 100%);
    margin: 0 auto;
    background:rgb(250, 252, 253);
    padding: 2rem;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
}

.student-helpdesk-section .helpdesk-form-notice {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 16px;
    border: 1px dashed var(--border);
    border-radius: 10px;
    color: var(--muted);
    text-align: center;
}

.student-helpdesk-section .helpdesk-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.student-helpdesk-section .helpdesk-form select,
.student-helpdesk-section .helpdesk-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    color: #000;
}
.student-helpdesk-section .helpdesk-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.student-helpdesk-section .helpdesk-form select {
    height: 40px;
}
.student-helpdesk-section .helpdesk-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.student-helpdesk-section .helpdesk-form-field {
    min-width: 0;
    padding-bottom: 10px;
}
.helpdesk-form-field label span {
    display: block;
    padding: 5px 0;
}
.wpcf7-form input[type="submit"] {
    padding: 14px 20px;
    border-radius: 12px;
    border: 0;
    background: #204c79;
    color: #ffffff;
    font-weight: 600;
}
@media (max-width: 600px) {
    .student-helpdesk-section .helpdesk-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
