@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
}
/* classes declaration */
.heading {
  font-family: "Roboto Slab", serif;
  font-size: 30px;
  font-weight: 600;
}

.form-content {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.admin-frame {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
body {
  /*background-image: linear-gradient(to right, #ae6be2, #0196fd);*/
  background-color: #e9eaff;
  box-sizing: border-box;
}

.admin-frame .img-fluid {
  height: 80%;
  border-radius: 50px;
}

.admin-frame .row {
  background-color: white;
  border-radius: 20px;
}

/* vertical-divider */
.vertical-divider {
  height: 500px;
  width: 3px;
  background-color: #ae6be2;
}

.img-div {
  border-right: 3px solid #3333cf;
}

.form-content span {
  color: #3333cf;
}

.form-control {
  border-radius: 50px;
}

.btn-login {
  background-color: #3333cf;
  padding: 10px 60px;
  color: white;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
}

.btn-login:hover {
  background-color: #7871FF;
  color: #3333cf;
  transition: 0.5s ease all;
}

.form-control:focus {
  border-color: rgb(73, 73, 73);
  box-shadow: none;
}

form {
  padding: auto 20px;
}

.form-control {
  width: 70% !important;
  margin: 0 auto;
}

/* mediaquery */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: hidden;
  }

  img {
    display: none;
  }

  .row {
    padding: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 800px) and (orientation: landscape) {
  .img-div {
    display: none;
  }
}
