*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to right,#0088FF #000000);
  color: black;
}

.container{
  margin: 0 15x;
  }
  .form-box{
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: white;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  h2{
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
  }
  input,
  select{
    width: 100%;
    padding: 12px;
    background: #eee;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  button{
    width: 100%;
    padding: 12px;
    background: #000000;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.5s;
  }
  button:hover{
    background: #333;
  }

  p{
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
      }
      p a{
        color: #0088FF;
        text-decoration: none;
      }
      p a:hover{
        text-decoration: underline;
      }