* {
    box-sizing: border-box;
    
  }
  body {
    padding-block: 5vh;
    margin: 0;
  
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    line-height: 1.5;
    color: white;
    background-image: linear-gradient(
        115deg,
        rgba(40, 40, 41, 0.8),
        rgba(32, 32, 53, 0.701)
      ),
      url(https://www.cloud4c.com/sites/default/files/2021-09/cloud-banking-1.jpg);
  }

  
  
  h2{

    font-size: 3.875em;
  }
  p{
    font-size: 1.875em;
  }
  
  input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #1b1a1a;
    border-radius: 4px;
    resize: vertical;
  }
  
  label {
    padding: 12px 12px 12px 0;
    display: inline-block;
  }
  
  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
 
  button {
    background-color: #403f3f; /* Green */
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
  }
  
  button:hover {
    box-shadow: 0 12px 16px 0 rgba(231, 229, 229, 0.24), 0 17px 50px 0 rgba(239, 209, 209, 0.19);
  }
  
  
  .container{
    display: flex;
    flex-flow: column;
    gap: 0.5em;
    padding: 20px;
    width: min(50em, 80vw);
    padding: 1.5em 2em;
    border-radius: 1.5em;
    margin: 0 auto;
    
    background-color: rgba(156, 151, 151, 0.3);
    color: rgb(255, 255, 255);
    
  }
  
  .col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
  }
  
  .col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }
