.navbar-header {
    z-index: 3;
  }

  .progress-popup {
    width: 500px;
  }
  @media screen and (max-width:600px) {
    .card-row-parent{
      grid-template-columns: repeat(1, 1fr);
    }
    .account-details-grid{
      grid-template-columns: repeat(1, 1fr);
    }
    .chart-container{
      flex-direction: column;
    }
    .circle-chart{
      margin-left: auto;
      margin-right: auto;
    }
    .card{
      width: 700px;
      overflow: scroll;
    }
    #wallet-activity-column{
      width: 100%;
      overflow: scroll;
    }
    .account-details-grid-left{
      grid-template-columns: repeat(1, 1fr);
    }
    .top-row{
      flex-direction: column;
      align-items: flex-start;
    }
    .navbar-header{
      padding: 20px 20px;
    }


    
  }
  @media screen and (min-width:601px) and (max-width:800px) {
    .card-row-parent{
      grid-template-columns: repeat(1, 1fr);
    }
    .account-details-grid{
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media screen and (min-width:801px) and (max-width:1000px) {
    .card-row-parent{
      grid-template-columns: repeat(2, 1fr);
    }
    .account-details-grid{
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media screen and (min-width:1001px) and (max-width:1200px) {
    .card-row-parent{
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .login-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #F0F2F5;
    height: 100vh;
}

.login-left {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

#main-image {
    width: 100%;
}

.login-copyright p {
    text-align: center;
    padding-bottom: 20px;
}

.login-form {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.login-form h3 {
    color: #0D062D;
    font-size: 26px;
    font-weight: 300;
}

.login-form h2 {
    color: #0D062D;
    font-size: 45px;
    font-weight: 500;
    margin-top: 20px;
}

#awonpay-text {
    color: #0D062D;
    font-size: 30px;
    font-weight: 500;
}

.login-input input {
    border: 1px solid #0D062D;
    border-radius: 6px;
    width: 80%;
    height: 50px;
    background-color: transparent;
    margin-bottom: 15px;
    padding-left: 15px;
}

form {
    margin-top: 30px;
}

.submit-btn a {
    background-color: #0D062D;
    color: #fff;
    width: 80%;
    height: 50px;
    border-radius: 6px;
    margin-top: 20px;
    border: 1px solid #0D062D;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.submit-btn a:hover {
    background-color: transparent;
    border: 1px solid #0D062D;
    color: #0D062D;
}

#remember-flex {
    display: flex;
    gap: 10px;

}

#remember-flex input {
    cursor: pointer;
}

.login-top-flex a {
    color: #000000;
    text-decoration: none;
}

.login-right {
    background-image: url(assets/images/login/1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#gradient-image {
    position: relative;
    width: 100%;
    height: auto;
    animation: moveLeftRight 5s infinite alternate ease-in-out;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(150px);
    }

    100% {
        transform: translateX(-150px);
    }
}
@media screen and (max-width:1000px) {
    .login-row{
        grid-template-columns: repeat(1, 1fr);
        height:100%;
        background-color: #F0F2F5;
    }
    .login-input input{
        width: 100%;
    }
    .login-form{
        width: 100%;
    }
    .login-top-flex{
        flex-direction: column;
        gap: 15px;
    }
    .login-top-flex a{
        display: flex;
        margin-right: auto;
    }
    .login-form{
        padding-top: 30px;
    }
    .login-form h2{
        margin-top:0px;
        font-size: 30px;
    }
    .submit-btn a{
        width: 100%;
    }
    .login-copyright p{
        padding-top:20px;
        font-size: 13px;
        text-align:left;
    }
    .login-right{
        display: none;
    }
    
}
@media screen and (min-width:1001px) and (max-width:1200px) {
    .login-row{
        height:100%;
    }
    .login-copyright p{
        padding-top: 30px;
        text-align: left;
    }
    .login-form{
        width: 100%;
        padding-top:40px;
    }
}
@media screen and (max-width:600px) {
    #notification-icon img{
        display:none;
    }
    .user-navbar-text{
        display:none;
    }
    body.overlay-active::after{
        z-index: 3;
    }
    .sidebar-2{
        width: 100%;
        padding: 20px;
    }
    .right-sidebar-form-parent-row{
        grid-template-columns: repeat(1, 1fr);
    }
    .add-and-cancel-btn{
        flex-direction: column;
    }
    .add-and-cancel-btn-2{
        flex-direction: column; 
    }
    .sidebar-top-text-2 h2{
        font-size: 20px
    }
    .settings-input-parent{
        grid-template-columns: repeat(1, 1fr);
    }
    .settings-save-btn button{
        justify-content: center;
        width: 100%;
        margin-left: 0px;
    }
    .settings-save-btn {
        margin-top: 50px;
    }
}