*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}
body{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(4deg, #27020700, #f1f1f11f);
}

/*=================================*/
.admin_container{
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
    color: rgb(5, 58, 107);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    border-top: 1px solid rgba(152, 166, 173, 0.2);
    bottom: 0;
    text-align: left !important;
    padding: 19px 30px 20px;
    position: absolute;
    right: 0;
    left: 0;
    background-color: #313a46;
}

.card{
    width: 300px;
    height: 495px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow:  0 0 40px 20px rgba(0, 0, 0, 0.26);
    perspective: 1000px;
}

.inner-box{
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s;
}
.card-front, .card-back{
        width: 100%;
        height: 100%;
        position: absolute;  
        background-position: center;
        background-size: cover;
        /* background: #0ea0e4; */
        background: #3f8bca;
        padding: 10px;
        box-sizing: border-box;
        backface-visibility: hidden;
        transition: .5s;
        transform: rotateY(-1deg);
    }


.card-back{
    transform: rotateY(180deg);
}

.card h2{
    font-weight: bolder;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.adm-button{
    width: 100%;
    border: 1px solid #fff;
    margin: 35px 0 10px;
    height: 32px;
    border-radius: 20px;
    padding: 0 10px;
    outline: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 12px;
    box-sizing: border-box;
    background: transparent;
}
.card .staff-btn{
    margin-top: 70px;
}
.card a{
    text-decoration: none;
    display: block;
    color: white;
    text-align: center;
    font-size: 13px;
    margin-top: 8px;

}
.input-box{
    width: 100%;
    padding: 0 10px;
    margin: 6px 0;
    border-top: 0;;
    border-left: 0;
    border-right: 0;
    height: 32px;
    border-radius: 20px;
    border-bottom: 2px solid #fff;
    box-sizing: border-box;
    outline: none;
    text-align: center;
    color: #fff;
    background: transparent;
}

::placeholder{
    color: #cececee1;
    font-size: 1.2em;
}

.submit-btn{
    position: relative;
}

.submit-btn::after{
    content: '\27a4';
    color: #333;
    height: 32px;
    width: 32px;
    font-size: 17px;
    line-height: 32px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    right: -1px;
    top: -1px;
}
span{

    font-size: 12px;
    margin-left: 10px;
}
