/* ===== Student Registration Form UI ===== */

#srs-form {
    max-width: 1100px;
    margin: 40px auto;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

#srs-form h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

#srs-form hr {
    margin: 35px 0;
    border: none;
    border-top: 1px solid #e5e5e5;
}

/* Inputs */
#srs-form input,
#srs-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 22px;
    font-size: 16px;
    border: 1.5px solid #000;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
}

#srs-form textarea {
    min-height: 90px;
    resize: vertical;
}

#srs-form input::placeholder,
#srs-form textarea::placeholder {
    color: #666;
    font-size: 15px;
}

/* Readonly style */
#srs-form input[readonly],
#srs-form textarea[readonly] {
    background-color: #f7f7f7;
    cursor: not-allowed;
}

/* Check Parent Button */
#check_parent_btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 30px;
}

#edit_parent_btn{
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 30px;

}

#check_parent_btn:hover {
    background: #333;
}

/* Submit Button (Yellow) */
#srs-form button[type="submit"] {
    background: #ffd65a;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 45px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#srs-form button[type="submit"]:hover {
    background: #ffcc33;
}

/* Message */
#srs_message {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
}

.iti {
  	width: 100%;
	margin-bottom: 20px;
}
