* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #535353;
}

.login-wrapper .login-section {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #2a2e31;
}

.login-wrapper .login-section .item {
    padding: 50px;
    box-sizing: border-box;
}

.login-wrapper .login-section .bg-logo-section {
    text-align: right;
}

.login-wrapper .login-section .content-wrap {
    background: #e4e4e4;
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-wrapper .login-section .content-wrap a {
    color: #0c99d4;
}

.login-wrapper .login-section .content-wrap .form-wrap {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgb(201 201 201 / 30%);
    border-radius: 8px; 
    max-width: 400px;
    box-sizing: border-box;
}

.login-wrapper .login-section .content-wrap .form-wrap .inner {
    padding: 20px;
}

.login-wrapper .login-section .content-wrap .form-wrap .title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;

}

.login-wrapper .login-section .content-wrap .form-wrap .title img {
    position: relative;
    top: 8px;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-field {
    margin-bottom: 15px;
}

.login-wrapper .login-section .content-wrap .form-wrap input {
    border: 0;
}

.login-wrapper .login-section .content-wrap .form-wrap input:focus {
    box-shadow: none;
    outline: none;
}

.login-wrapper .login-section .content-wrap .form-wrap label {
    font-weight: 700;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    clear: both;
    display: inline-block;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-control {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid #cccccc;
    height: 50px;
    border-radius: 3px;
    color: #616161;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-control::placeholder {
    font-size: 15px;
    color: #616161;
}

.login-wrapper .login-section .content-wrap .form-wrap input[type='checkbox'] {
    height: 20px;
    width: 20px;
    position: relative;
    top: 4px;
}

.login-wrapper .login-section .content-wrap .form-wrap .col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.login-wrapper .login-section .content-wrap .form-wrap .col-2 a {
    text-align: right;
    font-size: 14px;
    text-decoration: none;
}

.login-wrapper .login-section .content-wrap .form-wrap .col-2 a:hover {
    text-decoration: underline;
}

.login-wrapper .login-section .content-wrap .form-wrap .remenberMe span {
    font-size: 14px;
}

.login-wrapper .login-section .content-wrap .form-wrap .btn-login {
    width: 100%;
    border: 0;
    background: #2fc68f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
}

.login-wrapper .login-section .content-wrap .form-wrap .btn-login:hover {
    transform: translate3d(0, -1px, 0);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 40%);
}

.login-wrapper .login-section .content-wrap .form-wrap .terms {
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
}

.login-wrapper .login-section .content-wrap .form-wrap .terms a {
    text-decoration: none;
}

.login-wrapper .login-section .content-wrap .form-wrap .terms a:hover {
    text-decoration: underline;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-footer {
    text-align: center;
    position: relative;
    background: #0c99d4;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-footer p {
    color: rgb(255 255 255 / 90%);
    font-size: 14px;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-footer p a {
    color: #e5e88d;
    text-decoration: none;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-footer p a:hover {
    text-decoration: underline;
}

.login-wrapper .login-section .content-wrap .form-wrap .error {
    font-size: 12px;
    color: #d80b0b;
}

.login-wrapper .login-section .content-wrap .form-wrap .success {
    color: #4caf50;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert {
    display: grid;
    grid-template-columns: 1fr 50px;
    margin-bottom: 20px;
    background: #e8e8e8;
    border-radius: 3px;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert p {
    margin: 0;
    font-size: 13px;
    text-align: center;
    padding: 12px 10px;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert .alert-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert.danger {
    background: #f8d7da !important;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert.danger p,
.login-wrapper .login-section .content-wrap .form-wrap .alert.danger strong {
    color: #842029 !important;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert.success {
    background: #d1e7dd !important;
}

.login-wrapper .login-section .content-wrap .form-wrap .alert.success p,
.login-wrapper .login-section .content-wrap .form-wrap .alert.success strong {
    color: #0f5132 !important;
}


/* Added By Kawser Ahmed Start */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    margin-top: -2px;
    color: #fff;
    opacity: 1;
    
  }
  .close span{
      color:#fff;
      font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background: #000000bf;
    color: #fff;
  }

  .modal .modal-title{
      color:#fff;
  }
  
  .modal-body {padding: 2px 16px;}
  
  .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
    background: #000000bf;
    color: #fff;
  }




  .ph3-loading-button .fa {
    margin-left: 8px;
    margin-right: 12px;
    font-weight: 700 !important;
    color: #fff;
    
  }


/* Added By Kawser Ahmed End */
.login-wrapper .login-section .learn-more-text {
    display: inline-block;
    border-top: 1px solid #3f4044;
    margin-top: 30px;
    padding: 20px;
}

.login-wrapper .login-section .learn-more-text .wrap {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 30px;
}

.login-wrapper .login-section .learn-more-text p {
    color: #d3d4d4;
    text-align: left;
    line-height: 1.2;
    font-size: 15px;
}

.login-wrapper .login-section .learn-more-text p sup {
    color: #d3d4d4;
    font-size: 10px;
}

.login-wrapper .login-section .learn-more-text p a {
    color: #0c99d4;
    text-decoration: none;
}

.login-wrapper .login-section .learn-more-text p a:hover {
    text-decoration: underline;
}

.login-wrapper .login-section .learn-more-text img {
    height: 70px;
}

@media only screen and (max-width: 800px) {
    .login-wrapper .login-section {
        grid-template-columns: 1fr;
    }

    .login-wrapper .login-section .bg-logo-section {
        text-align: center;
    }

    .login-wrapper .login-section .bg-logo-section img {
        height: 100px;
    }

    .login-wrapper .login-section .item {
        padding: 5%;
    }

    .login-wrapper .login-section .content-wrap,
    .login-wrapper .login-section {
        height: auto;
    }
}

