@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

*{
    margin: 0; padding: 0; box-sizing: border-box; font-family: 'Ubuntu', sans-serif;
}

/* ----------- show data page ------------ */
.main-div{
    width: 50%; height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
}

.center-div{
    width: 90%; height: 40vh;
    /* background: -webkit-linear-gradient(left, #5dade2, #00c6ff);  */
    background: linear-gradient(to right, #68ddfa 0%,  #55c0db 0%, #e43df3 50%);
    padding: 20px 0 0 0;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .7);
    border-radius: 10px;
}
h1{
    font-size: 18px;
    color: #000;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 10px;
}
table{
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.6);
}
th,td{
    border: 1px solid #dfdede;
    padding: 8px 30px;
    text-align: center;
    color: grey;
}
th{
    text-transform: uppercase;
    font-weight: 400;
}
td{ font-size: 10px; }
.email-style{
    font-size: 14px;
    color: grey;
    display: inline-block;
    background: #f2f2f2;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    line-height: 30px;
    padding: 0 14px;
}
.post-class{
    text-transform: uppercase;
}
.fa{ font-size: 18px; }
.fa-edit{ color: #63c76a;}
.fa-trash{ color: #ff0000;}

.pagination {
    position : fixed;
    bottom: 11%;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    width: 50%;
    margin-left: 20%;
}   
.pagination a {
    font-weight: bold;
    color: #383d41;
    padding: 8px 16px;
    margin-left: 5px;
    text-decoration: none; 
}
.btnPage, .btnMainpage{
    border: none;
    border-radius: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
}
.pagination .btnPage:hover:not(.active) {   
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
}  
.main-page{
    position : fixed;
    bottom: 11%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1%;
    width: 20%;
    margin-left: 7%;
}
.main-page a{
    font-weight: bold;
    color: #383d41;
    padding: 8px 16px;
    text-decoration: none; 
}
.main-page .btnMainpage:hover:not(.active) {   
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
}  
/* ----------- insert data page ------------ */
a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    text-align: center;
}
.register{
    background: linear-gradient(to right, #68ddfa 0%,  #55c0db 0%, #e43df3 100%);
    margin-top: 4%;
    padding: 3%;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .7);
}
.register-left{
    text-align: center;
    color: #fff;
    margin-top: 4%;
}
.register-left a{
    text-decoration: none;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    width: 60%;
    background: #f8f9fa;
    font-weight: bold;
    color: #383d41;
    margin: auto;
    cursor: pointer;
}
.register-left img{
    margin-top: 5%;
    margin-bottom: 5%;
    width: 100%; 
    size: 100px;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 1s infinite alternate;
}
.register-right{
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .03);
}
@-webkit-keyframes mover{
    0% {transform: translateY(0);}
    100% {transform: translateY(-20px);}
}
@keyframes mover{
    0% {transform: translateY(0);}
    100% {transform: translateY(-20px);}
}
.register-left p{
    font-weight: lighter;
    padding: 12%;
    margin-top: -15%;
}
.register .register-form{
    padding: 10%;
    margin-top: 5%;
}
.btnRegister{
    float: right;
    margin-top: 15%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background: #0062cc;
    color: #fff;
    font-weight: 600;
    width: 60%;
    cursor: pointer;
}
.register .nav-tabs .nav-link:hover{
    border: none;
}
.register .nav-tabs .nav-link.active{
    width: 100px;
    color: #0062cc;
    border: 2px solid #0062cc;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.register-heading{
    font-size: 50px;
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #495057;
}

::placeholder{
    font-size: 14px;
}