*{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }
    body {
      color: #65665c;
      background: url('/assets/img/bg2.jpg');
      background-size: cover;
      min-height: 100vh;
      position: relative;
      font-family: 'SolaimanLipi', Arial, sans-serif !important;
    }
    ul{
        margin:0!important;
        padding:0!important;
    }
    li{
        list-style:none;
    }
    a{
        text-decoration:none;
    }
    h1,h2,h3,h4,h5,h6{
        margin-top:0!important;
    }

    /* ================== WRAPPER ================== */


    /* ================== HEADER ================== */
    .header {
      margin: 30px 0;
      overflow: hidden;
    }
    .logo img{
        max-width:120px;
        height:auto;
    }
    .logo-text {
        text-align:center;
        color:#fff;
    }
    .logo-text h1{
        font-size:46px;
    }
    .logo-text p{
        font-size:25px;
    }

    /* ================== TICKER ================== */
    .ticker {
      border:1px solid #333;
      padding:5px;
      height:38px;
    }
    .ticker a {
      color:#01FCFB;
      font-size:20px;
      margin-right:80px;
    }

    /* ================== LOGIN ================== */
    .login-body{
        margin-top:30px;
    }
    .login-left h3{
        color:#FFF200;
        font-size:22px;
    }
    .login-left ul{
        height:188px;
        overflow-y:auto;
    }
    .login-left ul li a{
        color:#FFF200;
        font-size:18px;
    }
    .login-right h3{
        color:#fff;
        font-size:20px;
    }
    .login-right .form-group{
        margin-bottom:20px;
        position:relative;
    }
    .login-right .form-control {
      padding-left:40px!important;
      border-radius:0;
      height:38px;
      font-size:20px;
    }
    .form-control-feedback {
      position:absolute;
      top:7px;
      left:10px;
      font-size:18px;
      color:#44495E;
    }
    .btn-info {
      background:#00BCD4!important;
      border-color:#00BCD4!important;
      border-radius:2px;
      font-size:14px;
      color:#fff;
    }
    .btn-info i{
        font-size:12px;
    }

    /* ================== CLOCK ================== */
    .clock {
      margin-top:-100px;
      width:175px;
      height:175px;
      display:flex;
      justify-content:center;
      align-items:center;
      background:url('/assets/img/clock.png');
      background-size:cover;
      border-radius:50%;
      box-shadow:0 -1.2em 1.2em rgba(255,255,255,0.06),
                 inset 0 -1.2em 1.2em rgba(255,255,255,0.06),
                 0 1.2em 1.2em rgba(0,0,0,0.3),
                 inset 0 1.2em 1.2em rgba(0,0,0,0.3);
      position:relative;
    }
    .clock:before {
      content:'';
      position:absolute;
      width:15px;
      height:15px;
      background:#fff;
      border-radius:50%;
      z-index:10000;
    }
    .clock .hour,.clock .min,.clock .sec{
        position:absolute;
    }
    .clock .hour,.hr{
        width:100px;
        height:100px;
    }
    .clock .min,.mn{
        width:130px;
        height:130px;
    }
    .clock .sec,.sc{
        width:160px;
        height:160px;
    }
    .hr,.mn,.sc{
        display:flex;
        justify-content:center;
        position:absolute;
        border-radius:50%;
    }
    .hr:before{
        content:'';
        position:absolute;
        width:7.5px;
        height:80px;
        background:#f81460;
        z-index:10;
        border-radius:3px;
    }
    .mn:before{
        content:'';
        position:absolute;
        width:3.5px;
        height:100px;
        background:#fff;
        z-index:11;
        border-radius:3px;
    }
    .sc:before{
        content:'';
        position:absolute;
        width:2px;
        height:150px;
        background:#0075fa80;
        z-index:12;
        border-radius:3px;
    }

    /* ================== WRAPPER ================== */
    .wrapper {
        max-width: 990px;
        margin: 0 auto;      /* center wrapper */
        min-height: calc(100vh - 60px); /* full height minus footer height */
        position: relative;
    }

    /* ================== FOOTER ================== */
    .footer {
        background: #064472;
        color: #fff;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        /* ensures footer stays at bottom if content is short */
    }

    .login-footer { 
        text-align: right; 
    }
    .login-footer p { 
        margin-bottom: 0;
        font-size: 17px;
        padding: 4px 0; 
    }
    /* ================== ANIMATION TEXT ================== */
    #waviy span {
      display:inline-block;
      font-size:50px;
      color:#fff;
      text-transform:uppercase;
      animation:flip 2s infinite;
      animation-delay:calc(.2s * var(--i));
    }
    #waviy2 span {
      display:inline-block;
      font-size:28px;
      color:black;
      text-transform:uppercase;
      animation:flip 2s infinite;
      animation-delay:calc(.2s * var(--i));
    }
    @keyframes flip {
      0%,80% {transform:rotateY(360deg);}
    }

    /* ================== RESPONSIVE ================== */
    @media(max-width:768px){
      .login-right h3,.login-left h3{
        font-size:21px;
      }
      .login-right .form-control{
        height:35px;
        font-size:17px;}
      }
      @media(max-width:480px){
        .logo-text h1{
            font-size:24px;
        }
        .logo-text p{
            font-size:16px;
        }
        .footer{
            position:static;
        }
        .login-body{
            margin-top:16px;
            padding:15px 0;
        }
      }