html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

body {
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.all-mid{
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
}

.login-area{
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    height: 310px;
}

.clients-area{
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    height: auto;
}

.logo {
    text-align: center;
    width: 360px;
    position: relative;
}

.logo img{
    width:100%;
}

.operator-title{
    color: #fff;
    display: block;
    position: relative;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

.subaccounts {
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.form {
    text-align: center;
    padding: 15px;
    padding-bottom: 25px;
    /* width: 360px;
    width: 92%; */
}

.form span svg{
    height: 24px;
    width: 24px;
    position: relative;
    fill: #8C8C8C;
    cursor: pointer;
    right: -45%;
    margin: -40px 0 18px 0;
}

.form h2 {
    font-size: 18px;
    color:  white;
    margin: 0 0 40px 0;
}

.error {
    border: 3px red solid !important;
}

.errormsg {
    text-align: center;
    color: red;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
    transition-delay: background-color 5000s, color 5000s;
}

.input-style{
    border: none;
    border-bottom: 1px solid white;
    color: white;
    height: 50px;
    background: transparent;
    font-size: 18px;
    padding: 0 5px;
    outline: transparent;
    max-width: 440px;
    width: calc(100% - 10px);
    -webkit-box-sizing: border-box;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input-style:focus {
    border-bottom-color: #ffdd00;
}

.div-button{
    margin: 40px 0 0 0;
    display: inline-block;
    text-align: center;
}

.btn{
    width: 240px;
    display: inline-block;
    background-image: linear-gradient(3deg, #fd0, #fd0);
    transition: 0.2s;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    font-weight: bold;
}

.btn:hover{
    background-image: linear-gradient(3deg, #c39a00, #fd0);
    transition: 0.2s;      
}
.resetPassword{
    position: relative;
    display: inline-block;
    color: #fff;
    width: 96%;
    text-align: right;
    margin: 10px 0 0 0;
}

.resetPassword a{
    text-decoration: none;
    color: #fd0;
}

.resetPassword a:hover{
    color: #fff;
}

.subaccounts tbody tr td img{
    width: 100%;
    display: block;
    transition: 0.2s;
 }

.subaccounts tbody tr td img:hover{
    transform: scale(1.06, 1.06);
}
.successmsg{
    color: #fff;
    text-align: center;
}

@media(max-width:420px){

 .logo {
    text-align: center;
    width: 90%;
    margin: 0 auto;
 }

 .logo img{
    width:100%;
 }

 .subaccounts{
    text-align: center;
    padding: 0 0;
    position: fixed;
    left: 0;
    top: 50%;
    width: 100%;
    height: auto;
 }

 .subaccounts tbody{
    position: relative;
    display: block;
    width: 100%;
    margin: 0px auto 0;
 }

 .subaccounts tbody tr{
    position: relative;
    width: 90%;
    display: inline-flex;
    border: 0;
    margin: 0 auto;
 }

 .subaccounts tbody tr td{
    position: relative;
    width: 50%;
    border: 0;
    margin: 0;
 }

 .subaccounts tbody tr td img{
    width: 100%;
    display: block;
 }

 .subaccounts tbody tr td img:hover{
    transform: scale(1.06, 1.06);
 }

 .form {
    text-align: center;
    padding: 0;
    padding-bottom: 0;
    position: relative;
    width: 90%;
    margin: 0 auto;
 }

 .btn {
    width: 70%;
    padding: 10px 20px;
 }
 


}

@media(max-width: 1400px){

    .subaccounts {
       text-align: center;
       padding: 0 15px;
       position: relative;
    }
    
}



body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont,'Verdana', 'Times New Roman', 'Arial',  'Segoe UI', 'Roboto', 'Oxygen',
      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: rgba(29,32,31,1);
  }
  
  
  *{
    margin: 0;
    padding: 0;
  }
  
  
  h1{
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px rgba(94, 94, 94, 0.1);
    color: white;
  }
  
  h2{
    font-size: 1.6rem;
    text-shadow: 2px 2px rgba(94, 94, 94, 0.1);
    color: rgb(221, 221, 221);
    font-weight: 500;
  }
  
  h3{
    font-size: 1.2rem;
    text-shadow: 2px 2px rgba(94, 94, 94, 0.1);
    color: rgb(221, 221, 221);
    font-weight: 500;
  }
  
  p {
    color: rgb(236, 236, 236);
    font-size: 0.7rem;
    font-weight: 200;
  }
  
  ul{
    list-style-type: none;
  }
  
  li {
    color: rgb(236, 236, 236);
    font-size: 0.8rem;
    font-weight: 100;
  
  }
  
  button {
    height: 60px;
    background-color: rgb(188, 19, 129);
    color: white;
    padding: 0 20px;
    font-weight: bold;
    font-size: 1.3rem;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  button:hover {
    cursor: pointer;
    background-color: rgb(144, 15, 99);
  
  }
  
  .container {
    width: 100%;
    height: 100vh;
  }
  
  
  @media screen and (min-width: 320px) and (max-width: 479px) {
  
    h1{
      font-size: 1.5rem;
    }
    
    h2{
      font-size: 0.95rem;
    }
    
    h3{
      font-size: 0.9rem;
    }
  
    button {
      height: 50px;
      font-size: 1.2rem;
    }
  
  }
  @media screen and (min-width: 480px) and (max-width: 599px) {
    h1{
      font-size: 1.6rem;
    }
    
    h2{
      font-size: 1rem;
    }
    
    h3{
      font-size: 1rem;
    }
  
    button {
      font-size: 1.2rem;
    }
  }
  @media screen and (min-width: 600px) and (max-width: 800px) {
    h1{
      font-size: 1.7rem;
    }
    
    h2{
      font-size: 1.1rem;
    }
    
    h3{
      font-size: 1.1rem;
    }
  
    button {
      font-size: 1.2rem;
    }
  }
  @media screen and (min-width: 801px) and (max-width: 1024px) {
    h1{
      font-size: 1.9rem;
    }
    
    h2{
      font-size: 1.4rem;
    }
    
    h3{
      font-size: 1.2rem;
    }
  
    button {
      font-size: 1.2rem;
    }
  }
  @media screen and (min-width: 1025px) and (max-width: 1280px) {
    h1{
      font-size: 2rem;
    }
    
    h2{
      font-size: 1.2rem;
    }
    
    h3{
      font-size: 1.1rem;
    }
  
    button {
      font-size: 1.2rem;
    }
  }
  
  @media screen and (min-width: 1281px){}