/* Custom styles */
.logo {
  width: 210px;
  height: auto;
}

.card {
  border-radius: 15px;
}

.card-body {
  padding: 2rem;
}

.btn-custom {
  background-color: #00113f;
  color: white;
  border: 1px solid #ffffff;
}

.btn-custom:hover {
  background-color: #002366;
  color: white;
  border: 1px solid #ffffff;
}

/* Style for the info link */
.info-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #808080;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #0389ff;
  outline: none;
}

.form-control::placeholder {
  color: #aaa;
  font-size: 0.9rem;
}
