/* Style the form element with a border around it */
form {
  border: 1px solid #f1f1f1;
}

/* Add some padding and a grey background color to containers */
.newslettercontainer {
  padding: 0px;
}

/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
  width: 100%;
  padding: 12px;
  color: black;
  margin: 20px 0px;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Add margins to the checkbox */
input[type=checkbox] {
  margin-top: 16px;
}

/* Style the submit button */
input[type=submit] {
  background-color: #1f546f;
  color: white;
  border: none;
}

input[type=submit]:hover {
  opacity: 0.5;
  
} 
  
.customButton { 
   border:none; 
 border-radius:15px;
padding:21.2px;
 margin:0px;
background-color:#000122;
color:#FFFFFF;
font-weight:500;
opacity:1;
transition:0.5s;
} 
.customButton:hover {
cursor:pointer;
background-color:#437151;
opacity:0.5;
transition:1s;
color:#FFFFFF;
} 
 

  
  
  
  
  
