:root {
    --green: #05320d;
  }

* {
    box-sizing: border-box;
  }

  
/* FULL BACKGROUND BLUR */
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: blur(4px);
    z-index: -1;
  }
  
  /* BODY CENTRING */
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    margin: 0;
  }
  
  
  /* LOGIN WRAPPER */
  .login-wrapper {
    display: flex;
    width: 90%;    
    height: 80vh;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
  }

  .login-wrapper {
    animation: fadeInUp 0.8s ease;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  
  .login-form-section,
  .login-image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form-content {
    width: 90%;
    max-width: 300px;
    color: white;
  }
  
  input[type="email"],
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
  }

  /* ISI FORM */
  .title {
    font-size: 3em;
    margin-bottom: 30px;
  }

  .message {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .btn {
    background-color: var(--green);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 40px;
  }
  
  .btn:hover {
    background-color: #045e4c;
  }

  .register-text {
    text-align: center;
    color: #eee;
    font-size: 16px;
  }
  
  .register-text a {
    color: #2196f0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .register-text a:hover {
    color: #00b894;
    text-decoration: underline;
  }
  
  
  .right-image {
    width: 100%;
    height: 100%;
    background: url('../images/right-background.jpg') no-repeat center center;
    background-size: cover;    
  }

  .right-image-reg {
    width: 100%;
    height: 100%;
    background: url('../images/right-background-reg.jpg') no-repeat center center;
    background-size: cover;    
  }
  

  /* Responsive layout for mobile */
  @media screen and (max-width: 768px) {
    .login-wrapper {
      flex-direction: column;
      height: auto;
      padding-top: 30px;
      padding-bottom: 50px;
      max-width: 80%; /* atau misalnya 350px */
      margin: 10px;
    }
  
    .login-image-section {
      height: 200px;
    }
  
    .blurred-image {
      height: 100%;
    }
  
    .title {
      font-size: 2rem; 
      padding: 10px;
      text-align: center;
    }
  }
  


  