 @keyframes blink { 
            50% {
                opacity: 0;
            }
        }

        .digital-clock {
            display: flex;
            font-family: 'Courier New', Courier, monospace;
            font-weight: bold;
            font-size: .05rem; /* Adjust the size as needed */
            color: #00FF00; /* Green digital clock color */
            background: #000; /* Black background for the clock */
            padding: 20px;
            border-radius: 10px;
            letter-spacing: 5px; /* Adjust spacing for 7-segment look */
            justify-content: center;
            align-items: center;
            text-shadow: 0px 0px 10px #00FF00; /* Glow effect */
        } 

        .digital-clock span.separator {
            animation: blink 1s infinite;
        }

        .countdown {
            text-align: center;
            margin-top: 20px;
        }

        .countdown h1 {
            font-size: 1rem;
            color: #333;
        }

    /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  overflow: hidden;
}

/* Container: Full Height and Width */
.container {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  width: 100vw;
}

/* Left Side: Institution Info */
.left-side {
  flex: 1;
  background-color: #005a77;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.left-side .logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.left-side h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.left-side p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 400px;
}

/* Right Side: Login Form */
.right-side {
  flex: 1;
  background-color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.right-side h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
  width: 100%;
  max-width: 400px;
}

.input-group label {
  font-size: 1rem;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.select{
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  background-color: #005a77;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}

.btn:hover {
  background-color: #004455;
}

.signup-link {
  text-align: center;
  margin-top: 10px;
}

.signup-link a {
  color: #005a77;
  text-decoration: none;
}

/* Media Queries: Responsiveness for Small Devices */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-side, .right-side {
    flex: 1 100%;
    padding: 20px;
    min-width: 0; /* Prevent minimum width issues */
  }

  .left-side h1 {
    font-size: 1.5rem;
  }

  .left-side p {
    font-size: 0.9rem;
  }

  .right-side h2 {
    font-size: 1.5rem;
  }

  .input-group input {
    font-size: 0.9rem;
    padding: 10px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
} 

@media (max-width: 480px) {
  .left-side h1 {
    font-size: 1.3rem;
  }
 
  .left-side p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}