/* font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

/* font end*/
.login_section {
  background: #FFC900;
  position: relative;
  overflow: hidden;
}
.login_section::after {
  content: url(../images/logo/shape.png);
  position: absolute;
  top: 19%;
  left: 0;
  z-index: 1;
}
.login_section .wrapper {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.login_section .wrapper .form_area {
  z-index: 2;
  max-width: 360px;
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: -10px 10px 30px 1px rgba(0, 0, 0, 0.2);
}
.login_section .wrapper .form_area .logo {
  margin-bottom: 30px;
  text-align: center;
}
.login_section .wrapper .form_area .form-control {
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  font-size: 13px;
}
.login_section .wrapper .form_area .form-control:focus {
  box-shadow: none;
  border-color: #FFC900;
}
.login_section .wrapper .form_area .login_btn {
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 8px;
  background: #000000;
  color: #fff;
  padding: 0.7rem 0.75rem;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}
.login_section .wrapper .form_area .login_btn:hover {
  background: #FFC900;
  color: #000;
}
.login_section .wrapper .form_area .form-check-input {
  cursor: pointer;
}
.login_section .wrapper .form_area .form-check-label {
  font-size: 14px;
  cursor: pointer;
}