html{
    background:#0a1f1f;
}
body{
    background-image:url('./images/honey-comb-bg.png'),radial-gradient(circle at center 100px, #00857f,#0a1f1f);
    background-repeat: repeat, no-repeat;
    background-size: 332px auto, cover;
    background-attachment: fixed;
    transition: background-position 0.05s linear;
    min-height: 100vh;
}
.divider{
    max-width:100%;
    width:300px;
    height:2px;
    margin:0 auto;
    background-image:radial-gradient(circle at center, #00e3d5,#0a1f1f);
}

hr{
    border-color:gray;
    margin-top: 0;
}

.rounded{
    border-radius: 10px;
}
.error{
    border-color:red !important;
}
.text-success{
    color:#92dd67 !important;
}
.badge-success{
    background-color:#10504d !important;
}
.btn-nav.text-success{
    border-bottom:1px solid #92dd67 !important;
}
/* FLOATING LABLES */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.select-box{
    transition:all 0.5s ease-out;
}

.select-box.selected{
    transform:scale(1.05);
}
.select-box.selected:before{
    background: linear-gradient(180deg, #00e3d5 0%,#004f4a 25%, #004f4a  100%);
}
.select-box:before{
    content:'';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 10px;
    background: transparent;
}
.select-box:hover:before{
    background: linear-gradient(180deg, #00e3d5 0%,#004f4a 25%, #004f4a  100%);
}
.select-box > label{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border:none;
    outline: none;
    color:white;
    position:relative;
    background: #022a27;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border:none;
    outline: none;
    color:white;
    position:relative;
    background: #022a27;
}

.form-group:before{
    content:'';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 10px;
    background: linear-gradient(180deg, #00e3d5 0%,#004f4a 25%, #004f4a  100%);
}
.form-group label {
    position: absolute;
    left: 6px;
    top: 11px;
    /*transform: translateY(-50%);*/
    transition: all 0.3s ease-in-out;
    color: #9e9e9e;
    pointer-events: none;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 0 5px;
}

/* Move the label up when input is focused or has content */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label{
    top: -9px;
    font-size: 12px;
    color: white;
}

.btn-info{
    position:relative;
    background: linear-gradient(180deg, #06857d, #004f4a);
    border: none;
}
.btn-info:before{
    content:'';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    position: absolute;
    top: -2px;
    left: -2px;
    z-index:-1;
    border-radius: 10px;
    background: linear-gradient(180deg, #00e3d5 0%,#004f4a 25%, #004f4a  100%);
}
.text-info{
    color: #00e3d5 !important;
}
.text-info-light{
    color:#ccfff4 !important;
}
.bg-dark{
    background-color:#0a1f1f !important;
}
.modal-content{
    border:1px solid #00e3d5 !important;
    border-radius:25px;
    overflow:hidden;
}

/* DASHBOARD BUTTON*/
.btn-outline-info:focus{
    box-shadow:none !important;
}
.btn-outline-info{
    position:relative;
    background: #0a1f1f;
    border: none;
    z-index:2;
    border-radius: 10px;
}
.btn-outline-info:after{
    content:'';
    width: calc(100%);
    height: calc(100%);
    position: absolute;
    top: 0px;
    left: 0px;
    background: #0a1f1f;
    border-radius: 10px;
    z-index:-1;
}
.btn-outline-info:hover:after{
    background: #0d2929
}
.btn-outline-info:before{
    content:'';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    position: absolute;
    top: -2px;
    left: -2px;
    z-index:-1;
    border-radius: 10px;
    background: linear-gradient(180deg, #00e3d5 0%,#004f4a 25%, #004f4a  100%);
}

.btn-outline-info.danger:before{
    background: linear-gradient(180deg, #dc3545 0%, #66121a 25%, #66121a 100%);
}
/*-----------------*/

.modal-button{
    color:white;
    border: none;
    padding:8px 10px;
}
.reg_status{
    width: fit-content;
    font-size: 12px;
    margin-top: -26px;
    margin-bottom: 8px;
    margin-left: 5px;
    padding: 0 5px 0px 5px;
    border-radius: 7px 7px 0 0;
    background: #dc3545;
    color: white;
}

a {
    color: #91c84c;
}
a:hover {
    color: #28a745;
    text-decoration: none;
}

/* footer Animation */
.animated-background {
  background-repeat: repeat-x;
  /*background-size: cover;*/
  background-size: auto 100%;
  animation: scroll-bg 30s linear infinite;
  height: 104px;
  width: 100%;
}

@keyframes scroll-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}