/* General Styles */
/* Overlay */


body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Secure Header */
.secure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.secure-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.secure-header .nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.secure-header .nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.secure-header .nav-links a:hover {
  color: #000;
}

/* Main Container */
.container {
  width: 45%;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.container p{
    font-size: 15pt;
    font-family: sans-serif;
    color: #031d2d;
    line-height: 28px;
    margin-bottom: 35px;
}

/* Responsive Form */
.responsive-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: .5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top:10px;
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-group label .req{ font-size:9pt; color: #e10f0a;}

.form-group input, .form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-button {
  background-color: dodgerblue;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-button:hover {
  background-color: #45a049;
}
.img_hd{width:100%;}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: dodgerblue;
  color: white;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .form-row {
    flex-direction: column;
  }
}