<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">input.MyButton {
width: 150px;
padding: 7px;
cursor: pointer;
font-weight: bold;
font-size: 150%;
background: #1d3596;
color: #fff;
border: 4px solid #1d3596;
border-radius:0px;
}
input.MyButton:hover {
color: #fff;
background: #061a69;
border: 4px solid #061a69;
}

  /* Styles for the Popup Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto; /* Enable scrolling when modal content overflows */
  }

  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 5px;
	padding-right: 10px;
	padding-left: 15px;
    border: 1px solid #888;
    width: 90%;
    max-width: 850;
    max-height: 900px; /* Set a maximum height for the modal content */
    overflow-y: auto; /* Enable vertical scrolling for the modal content */
  }

  .close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  
  
  
  
  #loadingSymbol {
  display: none;
  margin-left: 10px; /* Adjust the margin as needed */
}

.fa-spinner {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  
  
  body {
    font-family: 'Open Sans', sans-serif;
}


.content {
  max-width: 500px;
  margin: auto;
}

 .hidden-div {
            display: none;
        }

		
		
		
.email_input {
	height: 30px; 
	width: 300px;
}
		
		
   @media (min-width: 1008px) {
    /* Add your CSS styles for laptops and computer screens here */
    
    #section1 {
      display: table-cell;
      /* Add more styles as needed */
    }
    
    #section2 {
      display: table-cell;
      padding-left: 100px;
      /* Add more styles as needed */
    }
	
	
	.modal-content {
    
    width: 60%;
    padding-left: 50px;
  }
	  .hidden-div {
                display: block; /* Making the div visible when the condition is met */
            }
	
			
</pre></body></html>