@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
    :root {
        --color: #3498db;
        --color-light: #7cc3f3;
        --basic-text-color: #ffffff;
        --normal-text-color: #000000;

        --select-color: #0099ff93;

        --menu-icon-color: #000000;
        --menu-text-color: #ffffff;
        --menu-underline-color: #25a8ff;
        --menu-bg-color: #5a5a5acc;
        --menu-close-btn-color: #ff6b6b;
    }

    ::-moz-selection { /* Code for Firefox */
        background: var(--select-color);
    }
    ::selection {
        background: var(--select-color);
    }

    
    html {
        font-family: "Poppins";
    }
    .notification-bg {
        display: none;
        visibility: hidden;
    }
    .notification-bg.visible {
        background-color:rgba(0, 0, 0, 0.397);
        margin: 0;
        padding: 0;

        z-index: 100;

        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        right: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: 0.5s;

        display: flex;
        visibility: visible;
    }
    .notification {
        position: absolute;
        font-family: "Poppins";
        background-color: white;
        border-radius: 10px;

        min-height: 400px;
        width: 600px;
    }
    .notification-title {
        position: relative;

        font-size: 30px;
        text-align: center;

        margin: 15px;

        font-weight: bold;
    }
    .notification-text {
        position: relative;

        font-size: 19px;
        text-align: left;

        margin: 15px;
    }
    .notification-btns {
        position: relative;
        margin-bottom: 40px;
    }
    .notification-btn-a {
        text-decoration: none;
        font-size: 18px;
        color: white;
        font-weight: unset;

        background-color: #3498db;


        border: 2px solid #3498db;
        border-radius: 10px;


        padding: 10px;
        margin: 20px;
        position: relative;

        display: block;

        width: 250px;

        cursor: pointer;
    }
    .notification-btn-b {
        text-decoration: none;
        font-size: 18px;
        color: #db3434;
        font-weight: bold;

        background-color: transparent;


        border: 2px solid #db3434;
        border-radius: 10px;


        padding: 10px;
        margin: 20px;
        position: relative;

        display: block;

        width: 250px;

        cursor: pointer;
    }



    .main {
        box-shadow: 0px 0px 50px rgb(146, 146, 146);
        border-radius: 10px;
        background-color: white;
        font-family: "Poppins";
        left: 50%;
        top: 10%;
        transform: translate(-50%,0%);
        position: absolute;

        width: 80%;
        min-height: 80%;
        

    }
    .main h1 {
        text-align: center;
        font-size: 30px;
    }
    .logout-btn {
        width: 89%;
        display: block;
        position: relative;
        left: 5%;
        height: 40px;
        line-height: 40px;
        margin-bottom: 15px;

        border: 2px solid #db3434;
        border-radius: 10px;

        text-align: center;
        color: white;
        background-color: #db3434;
        text-decoration: none;

        cursor: pointer;

        -webkit-transition: .4s ease-in-out 0s;
        -moz-transition: .4s ease-in-out 0s;
        -ms-transition: .4s ease-in-out 0s;
        -o-transition: .4s ease-in-out 0s;
        transition: .4s ease-in-out 0s;
    }
    .logout-btn:hover {
        background-color: transparent;
        color: #ff0000;
    }
    .logout-btn:active {
        transform: scale(0.95);
    }
    .item {
        height: 300px;
        box-shadow: 0px 0px 30px rgb(122, 122, 122);
        border-radius: 10px;
    }   

    .container {
        clear: both;
        padding: 0px;
        margin: 0px;

        width: 90%;
        transform: translateX(5%);
    }
    .item {
        display: block;
        float:left;
        margin: 1% 0 1% 1.6%;
    }
    .item:first-child { 
        margin-left: 0; 
    }
    .group:before,
    .group:after { 
        content:""; display:table; 
    }
    .group:after { 
        clear:both;
    }
    .group { 
        zoom:1; /* For IE 6/7 */ 
    }
    .span_2_of_2 {
        width: 100%;
    }
    .span_1_of_2 {
        width: 49.2%;
    }
    @media only screen and (max-width: 1000px) {
	    .item { 
	    	margin: 1% 0 1% 0%;
            margin-bottom: 15px;
	    }
    }
    @media only screen and (max-width: 1000px) {
        .span_2_of_2, .span_1_of_2 { width: 100%; }
    }
    .item .title {
        margin-top: 2%;
        text-align: center;
        font-size: 25px;

        font-weight: bold;
    }
    .item .description {
        margin-top: 10px;
        margin-left: 10px;

        height: 240px;
    }
    .item .btn {
        width: 59%;
        display: block;
        position: relative;
        left: 20%;
        height: 40px;
        line-height: 40px;
        margin-bottom: 15px;
        bottom: 20%;

        cursor: pointer;

        

        border: 2px solid #3498db;
        border-radius: 10px;

        text-align: center;
        color: white;
        background-color: #3498db;
        text-decoration: none;

        -webkit-transition: .4s ease-in-out 0s;
        -moz-transition: .4s ease-in-out 0s;
        -ms-transition: .4s ease-in-out 0s;
        -o-transition: .4s ease-in-out 0s;
        transition: .4s ease-in-out 0s;
    }
    .item .btn:hover {
        color: #3498db;
        background-color: transparent;
    }
    .item .btn:active {
        transform: scale(0.95);
    }



    @import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
    :root {
        --color: #3498db;
        --color-light: #7cc3f3;
        --basic-text-color: #ffffff;
        --normal-text-color: #000000;

        --select-color: #0099ff93;

        --menu-icon-color: #000000;
        --menu-text-color: #ffffff;
        --menu-underline-color: #25a8ff;
        --menu-bg-color: #5a5a5acc;
        --menu-close-btn-color: #ff6b6b;
    }


    ::-moz-selection { /* Code for Firefox */
        background: var(--select-color);
    }
    ::selection {
        background: var(--select-color);
    }


    html {
        font-family: "Poppins";
    }
    .menu-btn--container {
        right: 0px;
        z-index: 120;
        overflow: hidden;
        max-height: 500px;
        position: fixed;

        transition: 0.6s;
    }
    .menu-btn--container.open {
        right: 240px;
    }
    .menu-btn--container a {
        
        display: block;
        color: #f2f2f2;
        text-align: center;
        
        text-decoration: none;
        font-size: 17px;
    }
    .menu-btn--icon {
        display: inline-flex;
        width: 35px;
        height: 35px;
        position: relative;

        margin: 30px;

        right: 0;

        transition: 0.5s;
    }
    .menu-btn--icon-line {
        display: flex;
        width: 35px;
        height: 4px;
        background-color: var(--menu-icon-color);
        border-radius: 1px;
        position: absolute;
        transition: 0.5s;

        
    }
    .menu-btn--icon-line:nth-child(1) {
        top: 0;
        left: 0;
    }
    .menu-btn--icon-line:nth-child(2) {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .menu-btn--icon-line:nth-child(3) {
        bottom: -1px;
        left: 0;
    }
    .menu-btn--icon.open .menu-btn--icon-line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-btn--icon.open .menu-btn--icon-line:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%);
    }
    .menu-btn--icon.open .menu-btn--icon-line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    .menu-btn--icon.open .menu-btn--icon-line:nth-child(2) {
        transform: translateY(-50%) rotate(-45deg);
    }
    .menu-btn--icon.open .menu-btn--icon-line:nth-child(3) {
        bottom: 38%;
        transform: translateY(-50%) rotate(45deg);
    }
    .menu-btn--icon.open .menu-btn--icon-line {
        background-color: var(--menu-close-btn-color);
    }
    .menu {
        margin: 0;
        padding: 0;

        z-index: 100;

        position: fixed;
        width: 250px;
        height: 100vh;
        top: 0;
        right: -250px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: var(--menu-bg-color);

        box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.719);


        transition: 0.6s;
    }
    .menu.open {
        right: 0;
    }
    .menu nav {
        display: grid;
        
    }
    .menu li {
        list-style: none;
        margin: 20px;
        overflow: hidden;
    }
    .menu-rule {
        position: relative;
        height: 2px;
        width: 100%;
        background-color: var(--menu-text-color);

        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.397);
    }
    .menu .menu-sel {
        text-align: center;
        color: var(--menu-text-color);
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        position: relative;

        font-family: "Poppins";

        transform: translateY(40px);
    }
    .menu .menu-sel .img {
        width: 35px;
        height: 20px;
        
    }
    .menu .menu-sel::before {
        content: "";
        position: absolute;
        width: 0%;
        height: 5px;
        background: var(--menu-underline-color);
        bottom: 2px;
        left: 0;
        border-radius: 15px;
        z-index: -1;

        transition: 0.2s linear;
    }
    .menu .menu-sel:hover::before {
        width: 100%;
    }
    @media only screen and (min-width: 600px) {
        .menu .menu-sel {
            font-size: 25px;
        }
    }
    @media only screen and (max-width: 600px) {
        .menu .menu-sel {
            font-size: 25px;
        }
    }

    

    @media only screen and (min-width: 600px) {
        body {
            height: 100vh;
            width: 99vw;
        }
        .form-conatiner {
            box-shadow: 0px 0px 50px rgb(146, 146, 146);
            border-radius: 10px;
            background-color: white;
            font-family: "Poppins";
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            position: absolute;
    
            width: 80%;
            height: 70%;
    
            max-width: 500px;
            max-height: 400px;
        }
        .form {
            left: 50%;
            top: 40%;
            transform: translate(-50%,-50%);
            position: absolute;
    
            min-width: 60%;
        }
        .form h1 {
            text-align: center;
            font-size: 30px;
            letter-spacing: 9px;
            font-weight: 100;
        }
        .form p {
            font-size: 15px;
            margin-left: 2%;
    
            margin-top: 0px;
    
            
        }
        .form .input-field {
            width: 100%;
            height: 30px;
    
            font-size: 18px;
    
            background-color: transparent;
    
            border: 2px solid transparent;
            border-bottom: 2px solid black;
            
            transition: 0.3s;
        }
        
        .form .submit-btn {
            width: 300px;
            height: 45px;
            display: block;
    
            font-size: 20px;
    
            background-color: #3498db;
    
            border: 2px solid #3498db;
    
            color: white;
    
            border-radius: 50px;
    
            cursor: pointer;
            
            -webkit-transition: .2s ease-in-out 0s;
            -moz-transition: .2s ease-in-out 0s;
            -ms-transition: .2s ease-in-out 0s;
            -o-transition: .2s ease-in-out 0s;
            transition: .2s ease-in-out 0s;
    
        }    
        .form .submit-btn:hover {
            background-color: #2e88c4;
            border-color: #2e88c4;
    
            color: white;
        }
        .form .submit-btn:active {
            transform: scale(0.97);
        
        }
        .error {
            height: 50px;
            width: 300px;
    
            background-color: rgba(255, 0, 0, 0.466);
            border-radius: 10px;
    
            color: rgb(246, 246, 246);
    
            line-height: 50px;
    
            text-align: center;

            margin: 0 0 10px 0;

            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }
    
    
    
        /*/ ---- footer ---- /*/
        .footer--btn {
            text-decoration: none;
            color: black;
        
            border-bottom: 0px solid var(--color);
        
            margin-right: 20px;
            
            transition: 0.3s;
        }
        
        .footer-login {
            bottom: 20px;
            
            position: fixed;
            width: 90%;
            left: 50%;
            transform: translateX(-50%);
        
            z-index: 5px;
            
        
            height: 50px;
            line-height: 50px;
            padding-left: 30px;
        
            margin: 0;
        
            
            
            
            background-color: rgb(255, 255, 255);
            border-radius: 10px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.322);
        }
        
        .footer--btn:hover {
            border-bottom: 3px solid var(--color);
            text-decoration-color: var(--color);
        }
    }
    @media only screen and (max-width: 600px) {
        .form-conatiner {
            box-shadow: 0px 0px 50px rgb(146, 146, 146);
            border-radius: 10px;
            background-color: white;
            font-family: "Poppins";
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            position: absolute;
    
            width: 95%;
            height: 75%;
    
            max-width: 500px;
            max-height: 400px;
        }
        .form {
            left: 50%;
            top: 40%;
            transform: translate(-50%,-50%);
            position: absolute;
    
            width: 80%;
        }
        .form h1 {
            text-align: center;
            font-size: 40px;
            letter-spacing: 9px;
            font-weight: 100;
        }
        .form p {
            font-size: 17px;
            margin-left: 2%;
    
            margin-top: 0px;
    
            
        }
        .form .input-field {
            width: 100%;
            height: 30px;

            left: 50%;
            transform: translateX(-50%);
            position: relative;
    
            font-size: 18px;
    
            background-color: transparent;
    
            border: 2px solid transparent;
            border-bottom: 2px solid black;
            
            transition: 0.3s;
        }
        
        .form .submit-btn {
            width: 300px;
            height: 45px;
            display: block;
    
            font-size: 20px;
    
            background-color: #3498db;
    
            border: 2px solid #3498db;
    
            color: white;
    
            border-radius: 50px;
    
            cursor: pointer;
            
            -webkit-transition: .2s ease-in-out 0s;
            -moz-transition: .2s ease-in-out 0s;
            -ms-transition: .2s ease-in-out 0s;
            -o-transition: .2s ease-in-out 0s;
            transition: .2s ease-in-out 0s;
    
        }    
        .form .submit-btn:hover {
            background-color: #2e88c4;
            border-color: #2e88c4;
    
            color: white;
        }
        .form .submit-btn:active {
            transform: scale(0.97);
        
        }
        .error {
            height: 50px;
            width: 300px;
    
            background-color: rgba(255, 0, 0, 0.466);
            border-radius: 10px;
    
            color: rgb(246, 246, 246);
    
            line-height: 50px;
    
            text-align: center;

            margin: 0 0 10px 0;

            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }
    
    
    
        /*/ ---- footer ---- /*/
        .footer--btn {
            text-decoration: none;
            color: black;
        
            border-bottom: 0px solid var(--color);
        
            margin-right: 20px;
            
            transition: 0.3s;
        }
        
        .footer-login {
            bottom: 20px;
            
            position: absolute;
            width: 85%;
            left: 50%;
            transform: translateX(-50%);

            top: 90vh;

            bottom: 10px;
        
            z-index: 5px;
            
        
            height: 50px;
            line-height: 50px;
            padding-left: 30px;
        
            margin: 0;
        
            
            
            
            background-color: rgb(255, 255, 255);
            border-radius: 10px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.322);
        }

        
        .footer--btn:hover {
            border-bottom: 3px solid var(--color);
            text-decoration-color: var(--color);
        }
        body {
            height: 100vh;
            width: 95vw;
        }
    }

    

    


