:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #444444;
}

a {
  color: #1624a2;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}
.sub{
  text-align: center;
  color: #4b11e9;
  font-size: 18px;
}

/* Reduce space around the logo and name */
.card-body img {
  max-height: 50px; /* Adjust logo height to reduce space */
}

.card-body .d-flex {
  padding-top: 10px; /* Reduce top padding */
  padding-bottom: 5px; /* Reduce bottom padding */
}

.card-body .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Increase form width */
.card {
  max-width: 600px; /* Set max width of the card */
  margin: 0 auto; /* Center align the card */
}

.card-body .form-label {
  font-weight: bold;
}

.card-body .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
}

.card-body .btn-primary {
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
}

.card-body hr {
  margin: 15px 0;
}

/* Responsive Design Adjustments */
@media (max-width: 767px) {
  .card {
    max-width: 100%; /* Full-width on small screens */
  }
  .card-body img {
    max-height: 40px; /* Reduce logo size on small screens */
  }
  .card-body .d-flex {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.card-body .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Remove any padding */
  margin: 0; /* Remove any margin */
  width: 100%; /* Ensure it takes up full width of its container */
}

.card-body img {
  max-height: 60px; /* Adjust the logo size as per your requirement */
  margin-bottom: 0; /* Remove any bottom margin from the image */
}


#successMessage{
  width: 300px;
margin: 0 auto;
}