/* Extra small devices (phones, 375px and down) */
@media only screen and (max-width: 375px) {
    .profile-sec{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .profile-box{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .profile{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
    }
    .profile h3{
        text-align: center;
        margin-bottom: 30px;
    }
    .stu_info{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .stu_info h4,.stu_info h6,.stu_info p{
        text-align: center;
        margin-bottom: 10px;
    }
    .divider{
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--font-2);
        margin-bottom: 25px;
    }
    .stu_parent{
        width: 100%;
    }
    .form-group{
        width: 100%;
        margin: 5px 0px 5px 0px;
    }
    .form-group label{
        width: 100%;
        font-weight: 800;
    }
    .form-group input, .form-group select{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input[type="file"]{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
        padding-top: 7px;
        margin-bottom: 10px;
    }
    .form-group textarea{
        width: 100%;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input:focus,.form-group textarea:focus{
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        outline: none;
    }
    .form-group input[type="submit"]{
        background-color: var(--bg-color-2);
        color: var(--font-1);
    }
    .form-group input[type="submit"]:hover{
        background-color: var(--bg-color-4);
        color: var(--font-1);
        transition: all 0.5 ease;
    }
    .login-links{
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .login-links p a{
        color: var(--bg-color-2);
        text-decoration: none;
    }
    .login-links p a:hover{
        font-style: italic;
        font-weight: 700;
    }
}
/* Small devices (portrait tablets and large phones, 375px and up) */
@media only screen and (min-width: 375px) {
    .profile-sec{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .profile-box{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .profile{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
    }
    .profile h3{
        text-align: center;
        margin-bottom: 30px;
    }
    .stu_info{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .stu_info h4,.stu_info h6,.stu_info p{
        text-align: center;
        margin-bottom: 10px;
    }
    .divider{
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--font-2);
        margin-bottom: 25px;
    }
    .stu_parent{
        width: 100%;
        /* text-align: center; */
    }
    .form-group{
        width: 100%;
        margin: 5px 0px 5px 0px;
    }
    .form-group label{
        width: 100%;
        font-weight: 800;
    }
    .form-group input, .form-group select{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input[type="file"]{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
        padding-top: 7px;
        margin-bottom: 10px;
    }
    .form-group textarea{
        width: 100%;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input:focus,.form-group textarea:focus{
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        outline: none;
    }
    .form-group input[type="submit"]{
        background-color: var(--bg-color-2);
        color: var(--font-1);
    }
    .form-group input[type="submit"]:hover{
        background-color: var(--bg-color-4);
        color: var(--font-1);
        transition: all 0.5 ease;
    }
    .login-links{
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .login-links p a{
        color: var(--bg-color-2);
        text-decoration: none;
    }
    .login-links p a:hover{
        font-style: italic;
        font-weight: 700;
    }
}

/* Small devices (portrait tablets and large phones, 425px and up) */
@media only screen and (min-width: 425px) {
    
}

/* Medium devices (landscape tablets, 600px and up) */
@media only screen and (min-width: 600px) {
    .profile-sec{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .profile-box{
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .profile{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
    }
    .profile h3{
        text-align: center;
        margin-bottom: 30px;
    }
    .stu_info{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .stu_info h4,.stu_info h6,.stu_info p{
        text-align: center;
        margin-bottom: 10px;
    }
    .divider{
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--font-2);
        margin-bottom: 25px;
    }
    .stu_parent{
        width: 100%;
        /* text-align: center; */
    }
    .form-group{
        width: 100%;
        margin: 5px 0px 5px 0px;
    }
    .form-group label{
        width: 100%;
        font-weight: 800;
    }
    .form-group input, .form-group select{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input[type="file"]{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
        padding-top: 7px;
        margin-bottom: 10px;
    }
    .form-group textarea{
        width: 100%;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input:focus,.form-group textarea:focus{
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        outline: none;
    }
    .form-group input[type="submit"]{
        background-color: var(--bg-color-2);
        color: var(--font-1);
    }
    .form-group input[type="submit"]:hover{
        background-color: var(--bg-color-4);
        color: var(--font-1);
        transition: all 0.5 ease;
    }
    .login-links{
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .login-links p a{
        color: var(--bg-color-2);
        text-decoration: none;
    }
    .login-links p a:hover{
        font-style: italic;
        font-weight: 700;
    }
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    .profile-sec{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .profile-box{
        width: 35%;
        margin-left: auto;
        margin-right: auto;
    }
    .profile{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
    }
    .profile h3{
        text-align: center;
        margin-bottom: 30px;
    }
    .stu_info{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .stu_info h4,.stu_info h6,.stu_info p{
        text-align: center;
        margin-bottom: 10px;
    }
    .divider{
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--font-2);
        margin-bottom: 25px;
    }
    .stu_parent{
        width: 100%;
        /* text-align: center; */
    }
    .form-group{
        width: 100%;
        margin: 5px 0px 5px 0px;
    }
    .form-group label{
        width: 100%;
        font-weight: 800;
    }
    .form-group input, .form-group select{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input[type="file"]{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
        padding-top: 7px;
        margin-bottom: 10px;
    }
    .form-group textarea{
        width: 100%;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input:focus,.form-group textarea:focus{
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        outline: none;
    }
    .form-group input[type="submit"]{
        background-color: var(--bg-color-2);
        color: var(--font-1);
    }
    .form-group input[type="submit"]:hover{
        background-color: var(--bg-color-4);
        color: var(--font-1);
        transition: all 0.5 ease;
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .profile-sec{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .profile-box{
        width: 35%;
        margin-left: auto;
        margin-right: auto;
    }
    .profile{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
    }
    .profile h3{
        text-align: center;
        margin-bottom: 30px;
    }
    .stu_info{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .stu_info h4,.stu_info h6,.stu_info p{
        text-align: center;
        margin-bottom: 10px;
    }
    .divider{
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--font-2);
        margin-bottom: 25px;
    }
    .stu_parent{
        width: 100%;
        /* text-align: center; */
    }
    .form-group{
        width: 100%;
        margin: 5px 0px 5px 0px;
    }
    .form-group label{
        width: 100%;
        font-weight: 800;
    }
    .form-group input{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input[type="file"]{
        width: 100%;
        height: 45px;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
        padding-top: 7px;
        margin-bottom: 10px;
    }
    .form-group textarea{
        width: 100%;
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        padding-left: 15px;
    }
    .form-group input:focus,.form-group textarea:focus{
        border: 1px solid var(--bg-color-2);
        border-radius: 5px;
        outline: none;
    }
    .form-group input[type="submit"]{
        background-color: var(--bg-color-2);
        color: var(--font-1);
    }
    .form-group input[type="submit"]:hover{
        background-color: var(--bg-color-4);
        color: var(--font-1);
        transition: all 0.5 ease;
    }
}