
/* header start */
header{
  background-color: #35a21f;
  display: flex;
  justify-content: center;
  padding: 7px;
}
.mainHeader{
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.head-left{
  display: flex;
  align-items: center;
  padding: 5px;

}
.head-right{
  display: flex;
  align-items: center;
}

.head-right a{
  margin: auto 10px;
}
.head-right img{
  margin-left: 3px;
}
/* header end */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* height: 100vh; */
    background-color: #f3f1ff;
  }
  
  .container {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center children horizontally */

    position: absolute;	
    top: 50%;	
    left: 50%;	
    transform: translate(-50%, -50%);	

  }
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  input[type="text"],
  input[type="email"] {
    width: 75%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding in width calculation */

  }

  .g-recaptcha{
    width: 75%;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box; /* Include padding in width calculation */
  }
  
  button {
    width: 75%; /* Adjusted width */
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
  }
  
  
  button:hover {
    background-color: #0056b3;
  }
  
  #message {
    margin-top: 10px;
    color: red;
    text-align: center;
  }
  

  #loader {	
    display: none;	
    position: fixed;	
    z-index: 9999;	
    top: 0;	
    left: 0;	
    width: 100%;	
    height: 100%;	
    background-color: rgba(255, 255, 255, 0.7);	
  }	

  .loader-icon {	
    
    position: absolute;	
    top: 50%;	
    left: 50%;	
    transform: translate(-50%, -50%);	
    border: 16px solid #f3f3f3;	
    border-top: 16px solid #3498db;	
    border-radius: 50%;	
    width: 80px;	
    height: 80px;	
    padding: 20px;

    animation: spin 2s linear infinite;	
  }	

  @keyframes spin {	
    0% { transform: rotate(0deg); }	
    100% { transform: rotate(360deg); }	
  }	