.swal2-styled.swal2-confirm{
    background: #247d7c !important;
  }
  .swal2-styled.swal2-confirm:focus{
    box-shadow: none!important;
  }

  *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img{
  max-width: 100%;
}
body{
  font-family: 'Nunito', sans-serif;
  font-size: 100%;
  background-color: #121212;
  min-height: 100vh;
  display: flex;
    justify-content: center;
    padding:20px;
  background-position: center;
}
.outer-wrapper{
    flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-box{
  max-width: 767px;
  background: #f9f9f9;
  padding: 30px;
  border: 1px solid #ffffff;
  border-radius: 20px;
}
.form-box label{
    color: #565656;
    font-weight: 600;
}
.form-select:focus,
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #84be84;
    outline: 0;
    box-shadow: 0 0 10px rgb(13 253 67 / 25%);
}
.logo{
  max-width: 340px;
  width: 100%;
  margin-bottom: 30px;
}
.form-box button.btn-success {
    padding: 10px 30px;
    border-radius: 10px;
    width: 100%;
    background: #02b661;
    border-color:#02b661;
}

.form-box button.btn-success:hover {
  background:#008848;
  border-color:#008848;
}