body {
  background-color: #f3f4f6;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.login-box {
  max-width: 400px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;

  position: relative;
  z-index: 2;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.form-control {
/*   border-radius: 20px; */
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  padding: 13px;
  position: relative;
}

.input-group:hover ,
.form-control:focus {
  border-color: #23089b;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.input-group:focus-within .input-group-text {
  border-color: #23089b; 
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.btn-custom {
  background-color: #000;
  border: none;
  border-radius: 20px;
  padding: 15px 0;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  color: #fff;
}

.btn-custom:hover {
  background-color: #3910cf;
  color: #fff;
}

.icon {
  margin-right: 10px;
}

.circle-image {
  text-align: center;
  margin-top: 20px;
}

.circle-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}