body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  }

.container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px ;
  text-align: center;
  width: 450px;
 /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);*/
}

.logo {
  max-width: 100%;
  margin-bottom: 20px;
  
  
}
 h2{
  font-weight: 600;
 }

.form-control {
  width: 100%;
  height: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px 5px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.input-group-text {
  height: 10px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  background-color: transparent;  /*Removed background color */
  border: none;
}

.input-group-text .fas {
  padding: 0; /* Removed padding */
  font-size: 20px;
  border: none; /* Removed border */
}

.btn {
  width: 150px; /* Reduce button width by 40px (20px padding on each side) */
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px; /* Make button bit round */
  background-color:#002244;
  font-weight: 600;
  color: white;
  cursor: pointer;
  font-size: 16px; /* Reduce text size */
  transition: color 0.3s ease; /* Smooth transition for color change */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add box shadow */
}
.btn:hover {
  background-color: white;
  color: #002244; /* Change text color on hover */
  border: 1px solid black;
  font-size: medium;
}
a {
  text-decoration: none;
  color: #0b77ea;
  transition: text-decoration 0.3s ease; /* Smooth transition for text-decoration */
}
a:hover {
  text-decoration: underline; /* Underline on hover */
}

@media (max-width: 600px) {
  .container {
    width: 90%;
    padding: 20px;
  }

  .form-control {
    width: calc(100% - 20px);
  }

  .btn {
      font-size: 14px;
      width: 100px;
  }
}
