* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      background: #f5f5f5;
    }
    .login-wrapper {
      display: flex;
      width: 90%;
      max-width: 1000px;
      margin: 50px auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      border-radius: 20px;
      overflow: hidden;
    }
    /* Left Panel */
    .left-panel {
      flex: 1;
      background: linear-gradient(to bottom right, #2e5e4e, #027ac7);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }
    .left-panel .logo {
      width: 120px;
      margin-bottom: 30px;
    }
    .left-panel h2 {
      font-size: 20px;
      font-weight: bold;
      margin: 15px 0;
    }
    /* Right Panel */
    .right-panel {
      flex: 1;
      padding: 30px 25px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #fff;
    }
    .right-panel h2 {
      color: #0056b3;
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }
    form {
      display: flex;
      flex-direction: column;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 12px;
    }
    .form-group label {
      margin-bottom: 4px;
      font-weight: 500;
    }
    .form-group input,
    .form-group select {
      padding: 12px;
      border: none;
      border-radius: 25px;
      background-color: #fde8cc;
      font-size: 14px;
      outline: none;
    }
    select {
      appearance: none;
      background-image: url('data:image/svg+xml;charset=US-ASCII,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 16px;
    }
    .btn {
      background: linear-gradient(135deg, #fcae1e, #f98d00);
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      text-align: center;
      letter-spacing: 0.5px;
    }
    .btn:hover {
      background: linear-gradient(135deg, #e29400, #c77400);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
    }
    .message, .alert {
      background: linear-gradient(90deg,#fff6ed,#fff1e6);
      color: #993d00;
      border: 1px solid #ffd8b5;
      padding: 10px 12px;
      border-radius: 8px;
      margin-bottom: 12px;
      font-weight: 600;
      text-align: center;
    }
    /* Top Bar */
    .top-bar {
      background: #004080;
      color: white;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
    .top-bar a {
      color: white;
      text-decoration: none;
      margin-left: 15px;
    }
    .top-bar a:hover {
      color: #ffc107;
    }
    .top-bar i {
      margin-right: 6px;
    }
    .top-left, .top-right {
      display: flex;
      align-items: center;
    }
    .top-right a {
      margin-left: 10px;
      font-size: 16px;
    }
    .login-footer {
      text-align: center;
      margin-top: 20px;
      color: #777;
    }
    .login-footer a {
      color: #0078d4;
      text-decoration: none;
      font-weight: 500;
    }
    .login-footer a:hover {
      text-decoration: underline;
    }