body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    background-image: url("./image/bg.jpg");
  }
  
  * {
    box-sizing: border-box;
  }
  
  /* Add padding to containers */
  .container {
    padding: 16px;
    background-color: white;
    margin-left: 25%;
    margin-top: 2%;
    Width:50%;
    padding: 2%;
    opacity: 0.8;
  }
  
  /* Full-width input fields */
  input[type=text], input[type=tel], input[type=date],input[type=email],input[type=number] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
  }

  textarea{
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    resize: none;
    font-size: 15px;
  }

  textarea:focus{
    background-color: #ddd;
    outline: none;
  }
  
  input[type=text]:focus, input[type=tel]:focus,input[type=date]:focus,input[type=email]:focus,input[type=number]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Overwrite default styles of hr */
  hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
  }
  
  /* Set a style for the submit button */
  .registerbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
  }
  
  .registerbtn:hover {
    opacity: 1;
  }
  
  /* Add a blue text color to links */
  a {
    color: dodgerblue;
  }