@keyframes dynamicBackground {
    0% { background-color: #bc8eee; }
    25% { background-color: #6295ec; }
    50% { background-color: #2600ff; }
    75% { background-color: #7c5af7; }
    100% { background-color: #2974ff; }
  }
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Source Sans Pro', sans-serif;
    animation: dynamicBackground 20s ease infinite;
    position: relative;
  }
  .login-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 400px;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    }
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  .login-box h2 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
  }
  .login-box-msg {
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
  }
  .form-control {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ccc;
    padding-left: 40px;
    transition: transform 0.2s;
  }
  .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    transform: scale(1.02);
  }
  .form-group {
    position: relative;
  }
  .form-group i {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #007bff;
  }
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
  }
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(1.05);
  }
  .alert {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
  #animation {
    position: absolute;
    top: 0;
    right: 20%; 
    width: 100%;
    height: 100%;
    z-index: 0;
  }
.form-control {
  border-radius: 25px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
  border-color: #007bff; 
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none; 
}
.modern-input {
  position: relative;
  padding-left: 40px;
}
body::after {
  content: "\0048\0041\0044\0049\0059\0055\004e\0020\0041\004d\0049\004b\0020\0032\0030\0032\0035";
  display: none;
}
.hidden-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.modern-input i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #007bff;
}
.modern-button {
  border-radius: 25px;
  background-color: #007bff;
  border: none;
  padding: 10px;
  transition: background-color 0.3s, transform 0.2s;
}
.modern-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
.modern-button:focus {
  outline: none;
}
