* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  border: 0;
  outline: 0;
}
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
}
.container {
  width: 100%;
  height: min-content;
  display: flex;
  justify-content: space-evenly;
  gap: 1.8vh;
}
.btn {
  width: 100%;
  height: 50px;
  background-color: #f8ba5eef;
  cursor: pointer;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 800;
}
.btn::before {
  font-size: 23px;
}
.btn:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.3s;
}
.heading {
  width: 300px;
  margin-bottom: 2px;
  background-color: #fff;
  padding: 30px;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.heading .logo{
  width: 145px;
  height : 145px;
}
.heading h1,
h3,
h4 {
  text-align: center;
}
.heading h1 {
  font-size: 28px;
  font-weight: 600;
}
.heading h3 {
  font-size: 20px;
  text-decoration: underline;
}
.heading h4 {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 600;
}
.heading > a {
  color: #222;
  text-decoration: none;
}
.box {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 20px 30px 0 30px;
  border-radius: 13px;
}
.container .title{
  font-size: 25px;
  font-weight: 500;
  position: relative;
  margin-top: 10px;
}
.container .title::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  border-radius: 5px;
  background: linear-gradient(135deg, #71b7e6, #9b59b6);
}
form {
  padding: 25px;
  width: 100%;
  border-radius: 7px;
  box-shadow: 10px 10px 15px 15px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}

form h2 {
  font-size: 27px;
  text-align: center;
  margin: 0px 0 30px;
}

form .form-group {
  width: calc(100% / 2 - 20px);
  margin-bottom: 15px;
  position: relative;
}

form label {
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

form input,
form select {
  height: 45px;
  padding: 10px;
  width: 100%;
  font-size: 15px;
  outline: none;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #bfbfbf;
}

form input:focus,
form select:focus {
  border-color: #9a9a9a;
}

form input.error,
form select.error {
  border-color: #f91919;
  background: #f9f0f1;
}

form small {
  font-size: 14px;
  margin-top: 5px;
  display: block;
  color: #f91919;
}

form .password i {
  position: absolute;
  right: 0px;
  height: 45px;
  top: 28px;
  font-size: 13px;
  line-height: 45px;
  width: 45px;
  cursor: pointer;
  color: #939393;
  text-align: center;
}

.submit-btn {
  width: 100% !important;
  margin-top: 30px;
}

.submit-btn input {
  color: white;
  border: none;
  height: auto;
  font-size: 16px;
  padding: 13px 0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  background: #1BB295;
  transition: 0.2s ease;
}

.submit-btn input:hover {
  background: #179b81;
}

@media(max-width: 584px){
  .container{
   flex-direction: column;
   overflow: hidden;
  }
  .heading {
    width: 95%;
    margin: 10px;
  }
  .box{
    width: 95%;
    margin: 10px;
    margin-top: 0;
  }
  form .form-group {
    width: 100%;
  }
}
@media(max-width: 459px){
 }