html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.navbar {
    background-color: #F4FFFF !important;
    border-radius: 10px 10px 10px 10px; /* Top corners rounded */
}

 /*Apply rounded corners to the main container*/ 
.mainContent {
    border-radius: 10px 10px 10px 10px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    overflow: hidden;
    width: stretch;
    padding: 25px;
}

.appIcon {
    margin: 10px;
}


/* Apply rounded corners to the footer */
footer {
    border-radius: 10px 10px 10px 10px; /* Bottom corners rounded */
    background-color: #F4FFFF; /* A neutral color for the footer */
}



h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 2em;
    margin-bottom: 20px;
}

.form-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.header h1, .header p, .display-4 {
    text-align: center;
    margin-top: 20px;
    font-size: 2em;
    margin-bottom: 20px;
}

.privacy-link {
    color: #00A0C1;
}

.user-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="date"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    input[type="text"]:focus, input[type="date"]:focus {
        border-color: #00A0C1;
        outline: none;
    }

.submit-button {
    margin-top: 20px;
    grid-column: span 2;
    padding: 10px 20px;
    background-color: #00A0C1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-button:hover {
        background-color: #0086A8;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .user-form {
        grid-template-columns: 1fr;
    }

    .submit-button {
        grid-column: span 1;
    }
}