 * {
     box-sizing: border-box;
     font-family: Verdana, Geneva, sans-serif;
 }

 body {
     margin: 0;
     height: 100vh;

     display: flex;
     justify-content: center;
     align-items: center;
 }

 .login-card {
     width: 380px;
     background: #ffffffc7;
     border-radius: 12px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     padding: 30px;
 }

 .logo {
     text-align: center;
     margin-bottom: 20px;
 }

 .medium-image {
     display: block;
     max-width: 320px;
     width: 80px;
     height: auto;
     margin: 0 auto 12px;
     border-radius: 50%;
 }

 .logo h2 {
     margin: 10px 0 0;
     color: #1e3a8a;
 }

 .logo p {
     margin: 0;
     color: #64748b;
     font-size: 14px;
 }

 h3 {
     text-align: center;
     margin: 25px 0 5px;
     color: #1e3a8a;
 }

 .subtitle {
     text-align: center;
     font-size: 14px;
     color: #64748b;
     margin-bottom: 25px;
 }

 .form-group {
     margin-bottom: 18px;
 }

 .form-group label {
     display: block;
     margin-bottom: 6px;
     font-size: 12px;
     font-weight: 500;
     color: #334155;
 }

 .form-group input {
     width: 100%;
     padding: 12px;
     border-radius: 8px;
     border: 1px solid #cbd5f5;
     font-size: 14px;
 }

 .form-group input:focus {
     outline: none;
     border-color: #2563eb;
 }

 .error {
     color: #dc2626;
     font-size: 12px;
     margin-top: 4px;
 }

 .login-btn {
     width: 100%;
     padding: 12px;
     border: none;
     border-radius: 8px;
     background: linear-gradient(to right, #2563eb, #1e40af);
     color: #ffffff;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     margin-top: 10px;
 }

 .login-btn:hover {
     opacity: 0.95;
 }

 .forgot {
     text-align: center;
     margin-top: 15px;
 }

 .forgot a {
     color: #2563eb;
     font-size: 14px;
     text-decoration: none;
 }

 .forgot a:hover {
     text-decoration: underline;
 }

 /* BACKGROUND IMAGE WITH DARK OVERLAY */

 .wave {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;

     /* Background Image */
     background:
         /*linear-gradient(rgba(0, 0, 0, 0.014), rgba(0, 0, 0, 0.027)),*/
         url('../images/login.jfif');

     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;

     z-index: -1;
     overflow: hidden;
 }

 /* Optional animated circles */

 .wave span {
     position: absolute;
     width: 325vh;
     height: 325vh;
     top: 0;
     left: 50%;
     transform: translate(-50%, -75%);
 }

 .wave span:nth-child(1) {
     border-radius: 45%;
     background: rgba(255, 255, 255, 0.05);
     animation: animate 12s linear infinite;
 }

 .wave span:nth-child(2) {
     border-radius: 40%;
     background: rgba(255, 255, 255, 0.08);
     animation: animate 18s linear infinite;
 }

 .wave span:nth-child(3) {
     border-radius: 42.5%;
     background: rgba(255, 255, 255, 0.010);
     animation: animate 24s linear infinite;
 }


 @keyframes animate {
     0% {
         transform: translate(-50%, -75%) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -75%) rotate(360deg);
     }
 }