body {
  background-color: #344a72;
  font-family: "Roboto", sans-serif;
  background-image: url('https://cdn.discordapp.com/attachments/1158795535730348217/1238182029410177025/360_F_252328387_7fbJjg1d0LCqgiYbEzJ1HdlTgnHmqPVn.png?ex=663e5a60&is=663d08e0&hm=4007ac7d2dd81f90bd3c46c36f629ab17282390be995aac809bfaf14701319db&');
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-box, .login-box {
  background-color: white;
  border-radius: 3px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  box-sizing: border-box;
}

h1, h4 {
  text-align: center;
  margin: 0;
  padding: 10px 0;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 20px;
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="password"] {
  padding: 10px;
  border: 1px solid #5645f7;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
}

form input[type="email"] {
  padding: 10px;
  border: 1px solid #5645f7;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
}

input[type="submit"] {
  margin-top: 20px;
  border: none;
  background-color: #5645f7;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.para-2 {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 16px;
  margin-top: 10px;
  padding: 10px;
}

.para-2 a {
  color: #49c1a2;
  text-decoration: none;
}

@media (min-width: 768px) {
  .signup-box, .login-box {
    width: 400px;
  }

  .para-2 {
    font-size: 18px;
  }
}


