.gpm-student-antiragging-container {
    width: 100%;
}
.gpm-student-antiragging-container h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-student-antiragging-container .gpm-heading-main {
    color: #c21717;
}
.gpm-student-antiragging-container {
    width: 90%;
    margin: 0 auto;
}
/* Title */
.gpm-student-antiragging-title {
    text-align: center;
    font-size: 32px;
    color: #1976d2;
    margin-bottom: 30px;
}

/* Form Row */
.gpm-student-antiragging-form {
    display: flex;
    flex-direction: column;
}

.gpm-student-antiragging-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.gpm-student-antiragging-row input,
.gpm-student-antiragging-row select {
    width: 48%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

.gpm-student-antiragging-row input:focus,
.gpm-student-antiragging-row select:focus {
    border-color: #1976d2;
    outline: none;
}

/* Textareas */
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
    margin-bottom: 20px;
}

textarea:focus {
    border-color: #1976d2;
    outline: none;
}

/* Terms and Conditions */
.gpm-student-antiragging-terms {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.gpm-student-antiragging-terms input {
    margin-right: 10px;
}

/* Submit Button */
.gpm-student-antiragging-submit-section{
    display: flex;
    justify-content: center;
}
.gpm-student-antiragging-submit {
    display: flex;
    justify-content: center;
    width: 25%;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.gpm-student-antiragging-submit:hover {
    background: #107de9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gpm-student-antiragging-row {
        flex-direction: column;
    }

    .gpm-student-antiragging-row input,
    .gpm-student-antiragging-row select {
        width: 100%;
        margin-top: 10px;
    }
    
}

@media (max-width: 480px) {
    .gpm-student-antiragging-title {
        font-size: 26px;
    }

    .gpm-student-antiragging-submit {
        font-size: 16px;
    }
}