body{
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  justify-content: center;
  align-items: center;
  max-width: 650px;
  background: #F8F9FD;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 40px;
  padding: 25px 35px;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px 20px;
  margin: 20px;
}

.heading {
  text-align: center;
  font-weight: 900;
  font-size: 30px;
  color: rgb(16, 137, 211);
}
.logo{
  width: 100px;
  height: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 50%;
}
.form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.form .input {
  width: 90%;
  background: white;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  margin-top: 15px;
  box-shadow: #cff0ff 0px 10px 10px -5px;
  border-inline: 2px solid transparent;
}

.form .input::-moz-placeholder {
  color: rgb(170, 170, 170);
}

.form .input::placeholder {
  color: rgb(170, 170, 170);
}

.form .input:focus {
  outline: none;
  border-inline: 2px solid #12B1D1;
}
.form .login-button {
  display: block;
  width: 60%;
  font-weight: bold;
  background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
  color: white;
  padding-block: 15px;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
  border: none;
  transition: all 0.2s ease-in-out;
}

.form .login-button:hover {
  transform: scale(1.03);
  box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
}

.form .login-button:active {
  transform: scale(0.95);
  box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
}
/* Success Popup Styles */
#success-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#success-popup.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(16, 137, 211, 0.3);
  animation: popupFadeIn 0.6s ease;
}

.success-checkmark {
  font-size: 80px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.success-content h2 {
  color: rgb(16, 137, 211);
  font-size: 36px;
  margin: 10px 0;
}

.success-content p {
  color: #333;
  font-size: 18px;
  margin: 20px 0;
}

.success-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 20px auto;
  display: block;
}

.success-content button {
  background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: transform 0.2s;
}

.success-content button:hover {
  transform: scale(1.05);
}

@keyframes popupFadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.mil{
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
  transition: 0.2s;
}
.mil:hover{
  color: rgb(16, 137, 211);
}