 body {
     background: linear-gradient(to right, #6a11cb, #2575fc);
     min-height: 100vh;
     margin: 0;
     font-family: 'Segoe UI', sans-serif;
     color: #fff;
 }

 .header-container {
     background: linear-gradient(to right, #003973, #E5E5BE);
     color: white;
     padding: 15px 30px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .header-container img {
     width: 70px;
     height: auto;
 }

 .header-title {
     text-align: center;
     flex-grow: 1;
     font-size: 1.4rem;
     font-weight: bold;
 }

 .main-content {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     gap: 50px;
     margin-top: 50px;
     padding: 0 30px;
     flex-wrap: wrap;
 }

 #auth-container {
     background: #fff;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
     max-width: 400px;
     width: 100%;
     color: #333;
 }

 .clock-box {
     padding: 20px 30px;
     border-radius: 15px;
     background-color: rgba(255, 255, 255, 0.15);
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
     min-width: 280px;
     color: #fff;
 }

 .clock-box .digital {
     text-align: center;
     margin-bottom: 20px;
 }

 .clock-box .digital .fw-bold {
     font-size: 1.4rem;
 }

 .analog-clock {
  width: 150px;
  height: 150px;
  border: 6px solid white;
  border-radius: 50%;
  position: relative;
  margin: auto;
}

.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(0deg);
  background: white;
}

.hand.hour {
  width: 6px;
  height: 40px;
  background: white;
  z-index: 3;
}

.hand.minute {
  width: 4px;
  height: 55px;
  background: white;
  z-index: 2;
}

.hand.second {
  width: 2px;
  height: 65px;
  background: red;
  z-index: 1;
}

 @media (max-width: 768px) {
     .main-content {
         flex-direction: column;
         align-items: center;
     }
 }

 