﻿/* STYLE FOR STUDENT LOGIN PAGE START*/
input {
    outline: none;
    border: none;
}

.form {
    padding: 10px;
    border: 1px solid black;
    border-radius: 25px 25px;
}

.footer {
    border-top: 1px solid #334d4d;
    padding: 20px 0px;
    text-align: center;
}

.w3-tangerine {
    font-family: "Tangerine", serif;
}

label {
    margin-left: 3px;
}

.wrap-login100 {
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: 350px;
    margin-right: 350px;
    background: #fff;
    border: 1px solid white;
    border-radius: 40px;
    background: rgba(255, 255, 255,.7);
}
/*responsive*/
@media (max-width: 576px) {
    .wrap-login100 {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 20px;
        margin-right: 20px;
        background: #fff;
        border: 1px solid white;
        border-radius: 30px;
        background: rgba(255, 255, 255, .7);
    }
}

@media (max-width: 768px) {
    .wrap-login100 {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 20px;
        margin-right: 20px;
        background: #fff;
        border: 1px solid white;
        border-radius: 30px;
        background: rgba(255, 255, 255, .7);
    }
}

.login100-form {
    width: 100%;
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

.input100 {
    font-family: 'Aldrich';
    font-size: 13px;
    color: firebrick; /*#555555*/
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
}

/*---------------------------------------------*/
.focus-input100 {
    /*position: absolute;*/
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

    .focus-input100::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 3px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        background: #6a7dfe;
        background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
        background: -o-linear-gradient(left, #21d4fd, #b721ff);
        background: -moz-linear-gradient(left, #21d4fd, #b721ff);
        background: linear-gradient(left, #21d4fd, #b721ff);
    }

    .focus-input100::after {
        font-family: 'Aldrich';
        font-size: 18px;
        color: firebrick; /*#999999*/
        line-height: 1.2;
        content: attr(data-placeholder);
        display: block;
        width: 100%;
        position: absolute;
        top: 16px;
        left: 0px;
        padding-left: 5px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

.input100:focus + .focus-input100::after {
    top: -15px;
}

.input100:focus + .focus-input100::before {
    width: 100%;
}

.has-val.input100 + .focus-input100::after {
    top: -15px;
}

.has-val.input100 + .focus-input100::before {
    width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
    font-size: 15px;
    color: #999999;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 5px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .btn-show-pass:hover {
        color: #6a7dfe;
    }

    .btn-show-pass.active {
        color: #6a7dfe;
    }

.login100-form-btn {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 30px;
    background: linear-gradient(to right, #21d4fd, #b721ff);
}

    .login100-form-btn:hover {
        left: 0;
        transition-delay: 1s;
        background: linear-gradient(to right, #b721ff, #21d4fd);
    }

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    font-size: 16px;
    color: #c80000;
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

.avatar {
    display: block;
    /*border-radius: 200px;
    box-sizing: border-box;
    background-color: #ebe9e9;
    border: 1px solid #cfd8dc;*/
    margin-left: 72px;
}

@media (max-width: 576px) {
    .avatar {
        display: block;
        /*border-radius: 200px;
        box-sizing: border-box;
        background-color: #ebe9e9;
        border: 1px solid #cfd8dc;*/
        margin-left: 102px;
    }
}



.loginBox {
    margin-top: 45px;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
    border: 1px solid white;
    border-radius: 35px;
    background: rgba(255, 255, 255, .6);
}

@media (max-width: 576px) {
    .loginBox {
        margin-top: 15px;
        margin-bottom: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
        background: #fff;
        border: 1px solid white;
        border-radius: 35px;
        background: rgba(255, 255, 255, .6);
    }
}
/* STYLE FOR STUDENT LOGIN PAGE END*/


/*----------------------------------------------------------------------------------------------------------------------*/

/* TOP NAVIGATION ON STUDENT LOGIN PAGE START*/

/* Add a black background color to the top navigation */
.topnav {
    /*background: linear-gradient(to right,#b721ff, #21d4fd, #b721ff );*/
     background: linear-gradient(to right,#005b80, #02a5ca, #005b80 );
    

    overflow: hidden;
}

    /* Style the links inside the navigation bar */
    .topnav a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

/* Add an active class to highlight the current page */
.active {
    background-color: #4CAF50;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Style the dropdown button to fit inside the topnav */
    .dropdown .dropbtn {
        font-size: 17px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Style the links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
    /*background-color: #555;*/
    color: firebrick;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive .dropdown {
            float: none;
        }

        .topnav.responsive .dropdown-content {
            position: relative;
        }

        .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
        }
}
/* TOP NAVIGATION ON STUDENT LOGIN PAGE END */


/* SIDE NAVIGATION ON STUDENT INDEX PAGE START */

.themeFont {
    font-family: 'Aldrich';
}

.brushScriptFont {
    font-family: 'Brush Script MT';
    color: midnightblue;
    font-size: 25pt;
}

.sidebar {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
}

.navbar-static-top {
    width: 100%;
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
}

.grad_purple_green {
    background: linear-gradient(to bottom right, #ccccff 0%, #99ccff 50%, #66ffcc 100%);
}

.grad_cream_green {
    background: linear-gradient(to bottom right, #d5f3f6 0%, #ffffe6 50%, #d5f3f6 100%);
}

.sidenav {
    background: linear-gradient(to right, #d5f3f6, #ffffe6, #d5f3f6);
    overflow: hidden;
}

    .sidenav a:hover {
        background: linear-gradient(to bottom right, #ccccff 0%, #99ccff 50%, #66ffcc 100%);
        color: firebrick;
    }

.alert.alert-student {
    border: 0px;
    background: #d5f3f6;
    border-radius: 0px 0px;
    border-top: 1px solid #6cd6e0;
    border-bottom: 1px solid #6cd6e0;
    box-shadow: none;
}

/* SIDE NAVIGATION ON STUDENT INDEX PAGE END */
