
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  /* background-image: url(../media/bg3.png); */
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
}

.login_outer{
    width:100%;
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}
.background {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.background .shape {
  height: 200px;
  width: 200px;
  position: absolute;
  border-radius: 50%;
}

.shape:first-child {
  background: linear-gradient(#1845ad, #23a2f6);
  left: -80px;
  top: -80px;
}

.shape:last-child {
  background: linear-gradient(to right, #ff512f, #f09819);
  right: -30px;
  bottom: -80px;
}

form {
  width: 400px;
  max-width: 90%;
  background-color: #f6f3fdbe;  
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(168, 168, 168, 0.6);
  padding: 50px 35px;
}

form h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  color: #5557b0;
}

/* label {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #5557b0;
} */

input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid #5557b0;
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #5557b0;
}

::placeholder {
  color: #5557b0;
}

.button {
  margin-top: 50px;
  width: 100%;
  background-color:#4a4ca4;
  color: #ffffff;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.button:hover{
    
  background-color:#383980;

}

@media (max-width: 480px) {
  form {
    padding: 30px 20px;
    width: 90%;
  }

  .shape {
    display: none;
  }

  h3 {
    font-size: 26px;
  }
}

/* alert */

#alert_custom{
  /* display: none; */
}

.sign_in{
  margin-top:7px;
  color: #5557b0;

}
.sign_in a{
  /* text-decoration: none; */
}