body {
  margin: 0;
  padding: 0;
  background-color: #230d2b;
  /* background: linear-gradient(to bottom, #6a0dad, #2d006f); */
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.cont{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-box {
  background: rgba(255, 255, 255, 0);
  border-radius: 15px;
  backdrop-filter: blur(1px);
  border: 1px solid #e900fe;
  box-shadow: 0 0 25px #e900fe;
  padding: 60px 30px;
  width: 400px;
}

.login-box h2 {
  text-align: center;
  color: white;
  margin-bottom: 30px;
  font-size: 28px;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  padding: 12px 35px 12px 40px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
}

.input-box i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ccc;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.options a {
  color: #fff;
  text-decoration: none;
}

.options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-1 {
    font-weight: 600;
    width: 100%;
    margin-bottom: 10px;
    color: #e900fe;
    font-size: 17px;
    border-radius: 15px;
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid #e900fe;
    transition: 0.5s ease;
}
.btn-1:hover {
  background-color: #e900fe;
  color: #fff;
  cursor: pointer;
}

.register {
  font-size: 14px;
}

.register a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.error-message {
    /* background-color: #ffebee; */
    /* border: 1px solid #ffcdd2; */
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

form{
  background-color: none;
}