body{
    font-family: "Plus Jakarta Sans", sans-serif !important;
    background-image: linear-gradient(rgb(0 108 181 / 30%), rgba(239, 113, 170, 0.718)), url('../img/bg.png');
    background-size: cover;
    color: rgb(234, 86, 153) ;
    background-position: center center;
    width: 100%;
    height: 100vh;
    color: #fff;
    background-attachment: fixed;
}
.bovicuraa-bg{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* scroll-css */
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #a8a8a8;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #878787;
}   

.logo{
    background-color: #fff
}
:root {
  --space-root: 1rem;
  --space-xs: calc(var(--space-root) / 2);
  --space-s: calc(var(--space-root) / 1.5);
  --space-m: var(--space-root);
  --space-l: calc(var(--space-root) * 1.5);
  --space-xl: calc(var(--space-root) * 2);
  --color-primary: #EF7F1A;
  --color-secondary: black;
  --color-tertiary: #EA5699 ;
  --base-border-radius: 0.25rem;
  --ease: cubic-bezier(0.075, 0.82, 0.165, 1);
  --duration: 350ms;
}

.form h2 {
  font-weight: 700;
  color: #016DB5;
  font-size: 23px;
}
.new-table{
    max-width: 70%!important;
}
.form {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 20px auto;
  border-radius: 10px;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.form-inner{
    border-radius: 10px;
}


.form-inner {
  padding: 15px;
  background-color: #fff;
  z-index: 1;
}
.form-inner > * + * {
  margin-top: var(--space-xl);
}

.input-wrapper:focus-within label {
  color: var(--color-secondary);
}
.input-wrapper:focus-within input {
  border-color: var(--color-tertiary);
}
.input-wrapper + .input-wrapper {
  margin-top: var(--space-l);
}

.input-group input {
  border-radius:7px;
  font-size: 16px;
  padding-left: 20px
}
label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  color: var(--color-tertiary);
}

input {
  flex: 1 1 0;
  width: 100%;
  outline: none;
  padding: var(--space-m);
  font-size: var(--font-size);
  font-family: var(--font-family);
  color: var(--color-secondary);
  border: 2px solid var(--color-primary);
}
input:focus {
  color: var(--color-primary);
}
.btn--group{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.btn--group .btn--primary{
    background-color: #EA5699 ;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 40px;
}

.btn--group .btn--primary:hover{
    background-color: #EF7F1A;
    color: #fff;
}
.custom-file-upload {
    display: inline-block;
    background-color: #fff;
    border: 3px dashed #EA5699;
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-file-upload:hover {
    background-color: #fff;
}

.upload-icon i{
    margin-right: 5px;
    font-size: 40px;
    color: #EF7F1A;
}

input[type="file"] {
    display: none;
}

.file-name {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .0rem rgba(0, 123, 255, .25)!important;
}
.form table thead th{
    padding: 7px;
    border-bottom: 1px solid #ccc;
}
.form table tbody tr td{
    padding: 7px;
    border-bottom: 1px solid #ccc;
}
div.dataTables_wrapper div.dataTables_length label, div.dataTables_wrapper div.dataTables_filter label{
    text-transform: capitalize;
    font-weight: 500!important;
}
div.dataTables_wrapper div.dataTables_paginate{
    padding-top: 5px;
}
@media only screen and (max-width: 769px) {
    /* .bovicuraa-bg{
        height: auto;
    } */
}
@media only screen and (max-width: 600px) {
    .new-table {
        max-width: 100% !important;
    }
    .form{
        width: 100%;
        max-width: 100%;
    }
    .form-inner{
        padding: 1rem;
    }
    .form .logo img{
        width: 230px;
    }
    .form h2 {
        font-size: 20px;
    }
    .form-inner > * + *, .input-wrapper + .input-wrapper{
        margin-top: 1rem;
    }
    .input-group input {
        padding: .5rem;
        border-radius: 5px;
    }
    .form label {
        font-size: 14px;
    }   
    .btn--group{
        margin-top: 1.5rem;
    } 
    .btn--group .btn--primary{
        padding: 11px 30px;
        font-size: 16px;
    }
   

    
}