 /* Base font */
    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      height: 100vh;
      overflow: hidden; /* Prevent scrolling */
    }

    /* Container holding image and login form */
    .container-fluid {
      display: flex;
      height: 100vh;
    }
    a{
        text-decoration: none;
    }
    /* Left Side (Image) */
    .left-side {
      flex: 1;
      background-image: url('images/su_job.jpeg'); /* Image on left side */
      background-size: cover;
      background-position: center;
    }

    /* Right Side (Form) */
    .right-side {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Login Form Container */
    .login-container {
      width: 100%;
      max-width: 400px;
      padding: 2rem;
    }

    /* Logo */
    .logo-img {
      width: 100%;
      object-fit: contain;
      margin-bottom: 2rem;
    }

    /* Heading */
    h2 {
      font-weight: 700;
      color: #1e2859;
      text-align: center;
      margin-bottom: 2rem;
    }

    /* Input fields */
    .custom-input {
      background-color: #dcddeb;
      border: 1px solid #BB8F31;
      color: #1e2859;
      font-weight: 500;
      font-style: italic;
      padding: 0.8rem;
      width: 100%;
      border-radius: 10px;
      font-size: 1rem;
    }

    .form-label {
      color: #1e2859;
      font-size: 1.4rem;
    }

    .custom-input::placeholder {
      color: #6c757d;
      font-style: italic;
    }

    /* Submit Button */
    .btn-submit {
      background-color: #BB8F31;
      color: white;
      font-weight: bold;
      padding: 10px 0;
      font-size: 1.1rem;
      width: 100%;
      border: none;
      border-radius: 10px;
    }

    .btn-submit:hover {
      background-color: #a37a29;
    }
.register {
  text-align: center;
  font-size: 1rem;
  margin-top: 1rem;
}

.register a {
  color: #1e2859;
  font-weight: 500;
  text-decoration: none;
}

.register a:hover {
  text-decoration: underline;
}