.gpm-student-grievance-container {
    width: 100%;
}
.gpm-student-grievance-container-main{
    width: 90%;
    height: auto;
    margin: auto;
}
.gpm-student-grievance-container h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-student-grievance-container .gpm-heading-main {
    color: #c21717;
}
/* Title */
.gpm-student-grievance-title {
    text-align: center;
    font-size: 32px;
    color: #1976d2;
    margin-bottom: 30px;
}

/* Form Row */
.gpm-student-grievance-form {
    display: flex;
    flex-direction: column;
}

.gpm-student-grievance-row {
    display: flex;
    justify-content: space-between;
    margin-bottom:15px;
    gap: 15px;
}

.gpm-student-grievance-row input {
    width: 45%;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
    padding: 20px;
}
.gpm-student-grievance-row input:focus,
.gpm-student-grievance-form input:focus,
.gpm-student-grievance-form textarea:focus {
    border-color: #0662bd;
    outline: none;
}

/* Input Fields */
.gpm-student-grievance-form input,
.gpm-student-grievance-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
    margin-bottom: 15px;
}

/* Submit Button */
.gpm-student-grievance-submit-section{
    display: flex;
    justify-content: center;
}
.gpm-student-grievance-submit {
    display: inline-block;
    width: 25%;
    max-width: 350px;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gpm-student-grievance-row {
        flex-direction: column;
    }

    .gpm-student-grievance-row input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gpm-student-grievance-title {
        font-size: 26px;
    }

    .gpm-student-grievance-submit {
        font-size: 16px;
    }
}