@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

* {
  font-family: "poppins" !important;
  box-sizing: border-box !important;
}
:root {
  --blue : #54A5F8;
  --black : #202020;
  --dark : #9B9B9B;
  --grey : #ccc;
  --light-grey : #faf9f9;
  --white : #fff;
  --orange : #FFAB2A;
  --red : #FF0000;
  --sky-blue : rgba(84, 165, 248 , .22);
}
.h-custom {
  height: 95vh !important;
}
.form-control , .form-control:active , .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}
.accounts {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-color: #343E5A;
}
.accounts-container {
  box-sizing: border-box;
  width: 800px;
  background-color: var(--white);
  min-height: 500px;
  height: auto;
  border-radius: 15px;
}
.accounts-form {
  width: 60%;

}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
.account-input , .accounts .form-control {
  color: var(--dark);
  border: 1px solid var(--dark);
  
}
.account-input::placeholder, .accounts .form-control::placeholder {
  color: var(--dark);
}
.account-label {
  color: var(--black);
}
@media screen and (max-width : 1000px) {
  .accounts-container {
    width: 80%;

  }
  .accounts-form {
    width: 600px;
  }
}
@media screen and (max-width : 763px) {
  .accounts-container {
    padding: 30px;
  }
  .accounts-form {
    width: auto;
  }
}
@media screen and (max-width : 578px) {
  .accounts-container {
    width: 90%;
    padding: 20px;
  }
  .accounts .flex-between {
    padding-top: 2%;
    flex-direction: column-reverse;
  }
  
}