body {
  background:linear-gradient(to right,black ,rgb(3, 3, 70));
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
  }
  
  .signup-box {
    width: 360px;
    height: fit-content;
    margin: auto;
    background-color:white;
    color: black;
    border-radius: 3px;
  }
  
  /* .login-box {
    width: 360px;
    height: 280px;
    margin: auto;
    border-radius: 3px;
    background-color: white;
  } */
  
  h1 {
    text-align: center;
    padding-top: 15px;
  }
  
  h4 {
    text-align: center;
  }
  
  form {
    width: 300px;
    margin-left: 20px;
  }
  
  form label {
    display: flex;
    margin-top: 20px;
    font-size: 18px;
  }
  
  form input {
    width: 100%;
    padding: 7px;
    border: none;
    border-bottom: 2px solid black;
    /* border-radius: 6px; */
    outline: none;
    background-color: white;
    color: black;
  }
  ::placeholder{
    color: black;
  }
  
  input[type="submit"] {
    width: 320px;
    height: 35px;
    margin-top: 20px;
    border: none;
    background-color: coral;
    color: white;
    font-size: 18px;
  }
  
  #p1,#p2 {
    text-align: center;
    padding-top: 20px;
    font-size: 15px;
  }
  
  .para-2 {
    text-align: center;
    color: rgb(216, 45, 45);
    font-size: 15px;
    margin-top: -10px;
    margin-bottom: 100px;
  }
  
  .para-2 a {
    color: #49c1a2;
  }