body {
    font-family: Arial, sans-serif;
	background-image: url("enovatebg.png"); /* Replace with your image path */
    background-repeat: repeat; 
}
h1, h3, h4 {
  font-size: 2em; /* Make the text size large for visibility */
  color: transparent; /* Make the text itself transparent */
  background: 
    radial-gradient(circle at top left, #ff7e5f, rgba(255, 126, 95, 0) 70%), /* Top left radial gradient */
    radial-gradient(circle at bottom right, #88d8b0, rgba(136, 216, 176, 0) 70%), /* Bottom right radial gradient */
    linear-gradient(135deg, #8e44ad, #3498db 60%, #f39c12 90%);
  background-clip: text; /* Clip the background to the text */
  -webkit-background-clip: text; /* Safari/WebKit support */
  -webkit-text-fill-color: transparent; /* Safari/WebKit support */
  margin-bottom: 0;
}
h2{
	font-size: 2em; /* Make the text size large for visibility */
  color: navy;
  margin-top: 0;
}
a{
    text-decoration: none;
}
button{
    padding:1em;
    
}
header {
    text-align: center;
    padding: 20px;
	background-color: #f2f2f8;
	border-radius: 10px;
	padding: 1em;
	margin: 0.5em 1.5em 0;
	border-top: 1em solid navy;
}

.card-container {
    display: flex;
    justify-content: space-between;
    padding: 1em;
	gap: 1em; /* Adjust the value as needed */
}

.card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
    padding: 1em;
    text-align: center;
	width:28%;
	border-bottom: 1em solid navy;
}

.card img {
    width: 100%;
    border-radius: 5%;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card div{
	background-image: url("enovatebg.png");
	padding-top:0.1em;
	padding-bottom:0.1em;
}
input{
    height:1.5em;
}
.topPar{
	
	background-image: url("enovatebg.png");
	border-top: 0.5em solid navy; 
	border-bottom: 0.5em solid #4CAF50;
	padding: 20px;
	margin-bottom: 0;
}


.flex-justified {
	background:navy;
  display: flex;
  justify-content: space-between; /* Adjust as needed */
  align-items: center;
  padding: 10px; /* Adjust padding as needed */
}

.flex-justified span {
  font-size: 1.2em;
  font-weight:bold;
  color: #fff;
  margin: 0 5px;
}

@media only screen and (max-width: 600px) {
    .card-container {
        flex-direction: column;
		
    }
	.card{
		width:90%;
	}
}

.modal {
    position: absolute;
    z-index: 10;
    width:100%;
    overflow-y: auto;
    display:none;
    
}

.modal-wrapper {
    position:fixed;
    display:block;
    text-align:center;
    height: 100%;
    width:100%;
}

.modal-overlay {
    position: fixed;
    height: 100%;
    width:100%;
    transition: opacity;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-container {
    display: inline-block;
    background-color: #fff;
    border-radius: 0.5rem;
    text-align: center;
    min-width:40%;
    max-width:90%;
    max-height: 90%;
     overflow-y: auto;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    margin:auto;
    
}
 .form-container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }


.close-button {
    margin: 1rem;
    background-color: #3490dc;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem 0.5rem;
    border-radius: 0.25rem;
    float: right;
    
}

.modal-inner {
    background-color: #fff;
    padding: 1rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 0.15rem solid #3490dc;
    padding-top: 0.5rem;
}