
.empty-box{
    text-align:center;
    padding:60px 20px;
}

.empty-box i{
    font-size:70px;
    color:#ccc;
    margin-bottom:20px;
}

.empty-box h3{
    color:#666;
    margin-bottom:10px;
}

.empty-box p{
    color:#999;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:30px;
}

.card-box{
    background:#fff;
    border-radius:22px;
    padding:30px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
}

.card-box::before{
    content:'';
    position:absolute;
    top:-40px;
    right:-40px;
    width:140px;
    height:140px;
    background:linear-gradient(45deg,#7b00ff,#d000ff);
    border-radius:50%;
    opacity:0.15;
    z-index: 0;
}

.card-box i{
    font-size: inherit;
    color: currentColor;
}

.card-box h4{
    font-size:16px;
    color:#777;
    margin-bottom:10px;
}

.card-box h2{
    font-size:34px;
    font-weight:700;
}

.content-grid{
    display:flex;
    flex-direction: row;
    gap:25px;
}

.content-grid .chart-card {
    width: 60%;
}

.content-grid .invoice-card {
    width: 40%;
}

.chart-card,
.invoice-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.invoice-card .btn-add { margin-top: 15px; margin-bottom: 15px; }

.chart-card h3,
.invoice-card h3{
    margin-bottom:20px;
    font-size:22px;
    font-weight:600;
}

/* invoice */
.invoice-card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}
.summary-box{
    background:#fafaff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
}
.form-card{
    background:#fff;
    border-radius:30px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}
.icon-box{
    width:70px;
    height:70px;
    border-radius:20px;
    background:
    linear-gradient(90deg,#5f00ff,#d100ff);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}

.report-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:35px;
}

.report-card{
    background:#fff;
    border-radius:30px;
    padding:30px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

.report-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:
    linear-gradient(90deg,#5f00ff,#d100ff);
}
.report-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:
    linear-gradient(90deg,#5f00ff,#d100ff);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}

.report-card h3{
    font-size:36px;
    font-weight:700;
    color:#17003d;
    margin-bottom:10px;
}

.report-card p{
    color:#777;
    margin:0;
}

.table-card{
    background:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.settings-card{
    background:#fff;
    border-radius:30px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}
.logo-box{

    width:120px;
    height:120px;

    border-radius:25px;

    background:#fafaff;

    border:2px dashed #d2c2ff;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    margin-bottom:25px;
}

.logo-box img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.logo-box i{

    font-size:40px;

    color:#5f00ff;
}

.login-box{

    width:100%;
    max-width:400px;
}

.login-box h2{

    font-size:38px;
    font-weight:700;

    margin-bottom:10px;

    color:#140046;
}

.login-box p{

    color:#777;
    margin-bottom:35px;
}
.input-box{

    position:relative;
}

.input-box i{

    position:absolute;

    top:50%;
    left:18px;

    transform:translateY(-50%);

    color:#7a00ff;
}

.input-box input{

    width:100%;
    height:58px;

    border:1px solid #ddd;

    border-radius:15px;

    padding-left:50px;

    outline:none;

    transition:0.3s;
}

.input-box input:focus{

    border-color:#7a00ff;

    box-shadow:0 0 0 4px rgba(122,0,255,0.1);
}
.error-box {
  background: #ffe5e5;
  color: #cc0000;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  position: absolute;
  z-index: 100000;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  margin: auto;
  width: fit-content;
  height: fit-content;
  transition: all 0.3s ease-out;
}

@media screen and (max-width:767px) {
    .content-grid {
        flex-direction: column;
    }

    .content-grid .chart-card,
    .content-grid .invoice-card {
        width: 100%;
    }
}