body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f2f6fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f2f6fc;
  }
  
  
  .left-section {
    flex: 1;
    background: linear-gradient(135deg, #0057b7, #3399ff);
    color: white;
    padding: 50px;
  }
  
  .left-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .left-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .right-section {
    flex: 1;
    padding: 60px 40px;
  }
  
  .right-section h2 {
    margin-bottom: 30px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 6px;
    color: #555;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background: #0057b7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #0041a8;
  }
  .login-box {
    display: flex;
    flex-direction: row; /* penting: sejajarkan kiri-kanan */
    width: 900px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
  }
  
  .left-section {
    flex: 1;
    background: linear-gradient(135deg, #0057b7, #3399ff);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .right-section {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
  .login-box {
    flex-direction: column;
    width: 90%;
    height: auto;
  }

  .left-section, .right-section {
    flex: unset;
    width: 90%;
    padding: 30px 20px;
    text-align: center;
  }

  .left-section h1 {
    font-size: 28px;
  }

  .right-section h2 {
    font-size: 24px;
  }

  input[type="text"],
  input[type="password"],
  button {
    font-size: 14px;
    padding: 10px;
  }
}
.login-page {
  overflow-y: auto;
}
