* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: white; 
}


.navbar {
    background-color: #0040ff; 
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white; 
    font-family: Arial, sans-serif;
}


.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.navbar a:hover {
    text-decoration: underline;
}

.content {
    background-color: white; 
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}


.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}


h1 {
    text-align: center;
    margin-bottom: 20px;
}


.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}


.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}


.form-group-half {
    width: 48%;
}


.gender-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gender-options input {
    margin-right: 5px;
}


.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.submit-btn:hover {
    background-color: #0056b3;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}


.footer {
    background-color: #000000; 
    color: white; 
    padding: 20px 0; 
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.footer-section {
    width: 45%; 
}

.footer-section h4 {
    font-size: 18px; 
    margin-bottom: 10px; 
}

.footer-section p {
    font-size: 14px; 
    line-height: 1.6; 
}

.footer-bottom {
    text-align: center; 
    padding: 10px 0;
    font-size: 14px;
    border-top: 1px solid #000000; 
    margin-top: 20px; 
}


html, body {
    height: 100%; 
}

body {
    display: flex;
    flex-direction: column; 
}

.form-container {
    flex: 1; 
}

.footer {
    flex-shrink: 0; 
}
  
  @media (max-width: 480px) {
    .card-section {
      grid-template-columns: 1fr; 
    }
  }