 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url('/image/cabin.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(98, 80, 80, 0.3);
      z-index: 1;
    }

    .login-container {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      max-width: 450px;
      padding: 20px;
      
    }

    .logo-container {
      text-align: center;
      margin-top: 50px;
      margin-bottom: 50px;
    }

    .logo-image {
      width: 100px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
      border-radius: 100px;
    }

    .login-form-container {
      background: white;
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 5px solid #355E3B;
    }

    h2 {
      font-size: 35px;
      margin-bottom: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-align: center;
      color: #4c0b0b;
      font-weight: 600;
    }

    .subtitle {
      font-size: 14px;
      color: #355E3B;
      margin-bottom: 30px;
      display: block;
      font-family: 'Montserrat', sans-serif;
      text-align: center;
      font-weight: bold;
    }

    .input-wrapper {
      position: relative;
      margin-bottom: 25px;
    }

    .input-wrapper label {
      display: block;
      font-size: 14px;
      color: #355E3B;
      margin-bottom: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
    }

    .input-icon {
      position: absolute;
      left: 15px;
      top: 38px;
      font-size: 18px;
      z-index: 1;
      pointer-events: none;
    }

    input[type="email"],
    input[type="password"] {
      width: 100%;
      padding: 14px 15px 14px 50px;
      border: 3px solid #355E3B;
      border-radius: 10px;
      font-size: 14px;
      background: rgb(245, 245, 245);
      transition: all 0.3s;
      display: block;
      font-family: 'Montserrat', sans-serif;
    }

    input:focus {
      outline: none;
      border-color: #8b6f47;
      box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
      background: white;
    }

    .btn-primary {
      width: 100%;
      padding: 14px;
      background: #8b6f47;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 10px;
      font-family: 'Montserrat', sans-serif;
    }

    .btn-primary:hover {
      background: #6d5437;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    /* Modal Styles */
    .modal-content {
      border-radius: 15px;
      border: none;
    }

    .modal-body {
      padding: 30px;
    }

    .modal-icon {
      font-size: 48px;
      margin-bottom: 15px;
    }

    .modal-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
    }

    .modal-message {
      color: #666;
      margin-bottom: 25px;
      font-family: 'Montserrat', sans-serif;
    }

    .btn-danger, .btn-success {
      padding: 12px;
      font-weight: 600;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
    }

    @media (max-width: 768px) {
      .login-form-container {
        padding: 35px 25px;
      }

      h2 {
        font-size: 28px;
      }

      .logo-image {
        width: 150px;
      }

      .login-container {
        max-width: 90%;
      }
    }

    @media (max-width: 480px) {
      .login-form-container {
        padding: 30px 20px;
      }

      h2 {
        font-size: 24px;
      }

      .subtitle {
        font-size: 12px;
      }
    }