body {
  background: #e9f2f7;
  color: #000;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  background: #d3e6f5;
  position: fixed;
  top: -200px;
  left: -250px;
  height: 500px;
  width: 500px;
  border-radius: 50%;
}

body::after {
  content: "";
  background: #dbd9f1;
  position: fixed;
  bottom: -300px;
  right: -300px;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width:768px) {
  body::before {
    top: -100px;
    left: -100px;
    height: 300px;
    width: 300px;
  }

  body::after {
    bottom: -100px;
    right: -100px;
    height: 300px;
    width: 300px;
  }
}

.logo {
  max-width: 150px;
  border-radius: 15px;
  margin-bottom: 10px;
  margin-top: -20px;
  transform: translateX(-50%);
  margin-left: 50%;
  padding: 10px;
}

.custom-control-label {
  margin-bottom: 0;
  margin-top: 1px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card-signin {
  border: 0;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 1px 3px 25px #dfdfdf;
}

.card-signin .card-header {
  font-weight: 300;
  font-size: 1.5rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #FFFFFF;
}

.login-form-head {
  text-align: center;
  background: #ffffff;
  padding: 30px 15px;
  border-bottom: 1px solid #e8e8e8;
}

.login-form-head h4 {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.card-signin .card-body {
  padding: 1rem 2rem;
}

.form-signin {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  text-align: center;
}

.form-signin .btn {
  font-size: 14px;
  letter-spacing: .1rem;
  padding: 12px 20px;
  transition: all 0.2s;
}

.form-signin .form-control {
  padding: 12px 20px;
  text-align: center;
  border-left: 2px solid #6AD1E3;
  height: auto;
}

.form-signin .form-control:focus {
  border: 1px 1px 1px 2px;
  border-color: #6AD1E3;
  box-shadow: none;
}


.form-signup {
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.form-signup .btn {
  font-size: 14px;
  letter-spacing: .1rem;
  padding: 12px 20px;
  transition: all 0.2s;
}

.form-signup .form-control {
  padding: 12px 20px;
  height: auto;
}

.form-signup .form-control:focus {
  border: 1px solid #6AD1E3;
  box-shadow: none;
}

select.form-control {
  padding: 12px 20px;
  height: 51px !important;
}


.custom-control-label:before {
  background: #CCCCCC;
  border-radius: 50% !important;
}

.custom-control {
  display: inline-block;
}

.btn-register {
  text-align: center;
  display: block;
  color: #000000;
  font-size: 16px !important;
}

.btn-register:hover {
  color: #000000;
}

.alert-success {
  color: #363636;
  background-color: #d3ffdd;
  border-color: #2cba4d;
}

select.form-control {
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.btn {
  border-color: #6AD1E3;
}

.btn:hover {
  border-color: #753BBD;
}
.btn:focus {
  border-color: #753BBD;
}
.btn:active {
  border-color: #753BBD !important;
}

.btn-primary {
  background-color: #6AD1E3;
}
.btn-primary:hover {
  background-color: #753BBD;
}
.btn-primary:focus {
  background-color: #753BBD;
}
.btn-primary:active {
  background-color: #753BBD !important;
}
.btn-link{
  color: #6AD1E3;
}
.btn-link:hover{
  color: #753BBD;
}
.custom-control-input{
  accent-color: #6AD1E3 !important;
}