  body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #e3f2fd, #fff);
    overflow-x: hidden;
  }

  #main-container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    animation: fadeIn 1s ease-in-out;
  }

  #left-side,
  #right-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }

  #left-side {
    background: linear-gradient(180deg, #2196f3, #21cbf3);
    color: white;
    align-items: center;
    justify-content: center;
    animation: slideInLeft 1.2s ease-in-out;
  }

  #right-side {
    background: #f6f7fc;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1.2s ease-in-out;
  }

  #video-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  #video-card {
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    animation: floatUp 0.8s ease-in-out;
    width: 100%;
    max-width: 560px;
  }

  #video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
  }

  #video-info {
    padding: 1rem 1.5rem;
    background: #fff;
    color: #000;
  }
  #video-info .btn {
   background-color: #000;
    color: whitesmoke;
  }

#video-paragraph {
  margin-top: 30px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1a2733;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in-out;
}

#video-paragraph a {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 600;
}

#video-paragraph a:hover {
  text-decoration: underline;
  color: #81d4fa;
}

/* Simple fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

  #form-block {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    animation: floatUp 0.8s ease-in-out;
  }

  #login-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  #login-title img {
    max-height: 36px;
  }

  #powered-by-wrapper {
    text-align: center;
    font-size: 0.75rem;
    margin-bottom: 30px;
    
  }

  #powered-by-wrapper img {
    max-height: 30px;
    margin-top: -19px;
  
   
  }

  #form-username,
  #form-password {
    height: 50px;
    background: #f1f1f1;
    border: none;
    border-radius: 6px;
    margin-bottom: 20px;
    width: 100%;
    padding-left: 10px;
  }

  #form-username:focus,
  #form-password:focus {
    outline: none;
    box-shadow: 0 0 5px #2196f3;
  }

#login-button {
  background-color: #1a2733;
  border: none;
  color: #fff; /* Corrected spelling */
  font-weight: bold;
  transition: background 0.3s ease;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
}

#login-button:hover {
  background-color: #263f4f;
}

 #login-footer {
  display: flex;
  justify-content: space-between; /* push elements to edges */
  align-items: center;            /* vertically align text */
  margin-bottom: 20px;
  font-size: 0.9rem;
}

#login-footer p {
  margin: 0;
}

#forgot-pass {
  text-decoration: underline;
  cursor: pointer;
  /* remove margin-top and margin-bottom since flex handles spacing */
  margin: 0;
}

#sign{
  color: cadetblue;
}

  a {
    color: #2196f3;
  }

  a:hover {
    text-decoration: underline;
  }

  @media (max-width: 991.98px) {
    #main-container {
      flex-direction: column;
    }

    #left-side,
    #right-side {
      width: 100%;
      padding: 30px;
    
    
    }

    #video-card iframe {
      height: 240px;
    }
  }

  @keyframes slideInLeft {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInRight {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes floatUp {
    0% {
      transform: translateY(40px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }



/* message error  */
/* ====================================================== */
#message-box {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    border: 2px solid #ff6f61;
    border-radius: 10px;
    padding: 12px 18px;
    margin: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    colour: #333;
    text-align: centre;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-in-out;
}

#message-box:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Forgot Password Form */
/* ====================================================== */
#forgot-form {
    max-width: 380px;
    margin: 50px auto;
    padding: 25px;
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    animation: fadeInForgot 0.6s ease-in-out;
    text-align: center;
}

#forgot-form h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #222;
    font-weight: 600;
}

#forgot-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#forgot-form input[type="email"]:focus {
    border-color: #4cafef;
    box-shadow: 0 0 8px rgba(76, 175, 239, 0.3);
}

#forgot-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #4cafef, #0066cc);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.2s ease;
}

#forgot-form button:hover {
    background: linear-gradient(90deg, #0066cc, #4cafef);
    transform: translateY(-2px);
}

#forgot-form a {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

#forgot-form a:hover {
    color: #004080;
}

@keyframes fadeInForgot {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Set New Password */
/* ====================================================== */
/* Heading style */
#reset-heading {
    text-align: centre;
    font-family: 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 600;
    colour: #333;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Form container */
#reset-form {
    max-width: 400px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideUp 0.8s ease-in-out;
}

/* Input fields */
#new-password,
#confirm-password {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

#new-password:focus,
#confirm-password:focus {
    border-colour: #0078d4;
    box-shadow: 0 0 8px rgba(0,120,212,0.3);
    outline: none;
}

/* Button style */
#reset-button {
    width: 100%;
    padding: 12px;
    background: #0078d4;
    colour: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#reset-button:hover {
    background: #005a9e;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* password_reset_complete */
/* ====================================================== */
#password-reset-heading {
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}

#password-reset-text {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

#password-reset-link {
    color: #ffffff;
    background-color: #3498db;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

#password-reset-link:hover {
    background-color: #1d6fa5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
