* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("../../assets/img/blob.png");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: sans-serif;
}

/* Main container */
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#container {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  width: 700px;
  max-width: 700px;
  height: 450px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* Logo container */
.LogoContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
  text-align: center;
  margin-bottom: 100px;
}

.logo {
  width: 250px;
  height: 250px;
}

.WelcomeBack {
  font-family: system-ui;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-left: -10px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.create {
  font-family: system-ui;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: -30px;
}

/* RICE VISION */
.rv {
  font-family: georgia;
  font-size: 50px;
  font-weight: bold italic;
  color: #d19336;
}

label {
  font-size: 14px;
  font-family: system-ui;
}

/* BUTTONS */
.btn {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
}

/* SUBMIT BUTTON */
.submit {
  background-color: #00c21f;
  border: none;
  width: 90px;
  color: #fff4f4;
  height: 40px;
  border-radius: 10px;
  text-align: center;
}

/* CANCEL BUTTON */
.cancel {
  background-color: #ffffff;
  border: 1px solid #000000;
  width: 90px;
  color: #000000;
  height: 40px;
  border-radius: 10px;
  text-align: center;
}

/* CANCEL BUTTON HOVER */
.cancel:hover {
  color: white;
  background-color: red;
  border: none;
}

/* MARGIN BUTTONS */
.btn {
  margin-left: 40px;
}

.forgot-password {
  font-size: 14px;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
  #container {
    flex-direction: column;
    height: auto; 
    margin: 20px;
    max-width: 100%;
  }

  .LogoContainer {
    margin-right: 0;
    margin-bottom: 20px
  }
  #illustration3 {
    display: none;
  }
  
}

#illustration3{
  position: absolute;
  top: 151px;
  right: 100px;
  z-index: -1; /* Send the illustration to the back */
}