
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      font-family: Arial, sans-serif;
      background: url('./assets/bg.png') center center fixed;
      background-size: cover;
    }

    .login-box {
      text-align: center;
      width: 400px;
      padding: 40px;
      border-radius: 10px;
      background-color: #fff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .logo {
      margin-bottom: 20px;
    }

    .input-label {
      display: block;
      text-align: left;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .upload-button {
      width: 100%;
      padding: 12px 24px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
        letter-spacing: 0.5px;
        font-size: 14px;
    }

    .upload-button:disabled {
      cursor: not-allowed;
      opacity: 0.6;
    }

    .upload-button:hover {
      background-color: #0056b3;
    }

    .loader {
      border: 4px solid #f3f3f3; /* Light grey */
      border-top: 4px solid #3498db; /* Blue */
      border-radius: 50%;
      width: 30px;
      height: 30px;
      animation: spin 1s linear infinite;
      display: none; /* Initially hidden */
      margin: 15px auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loader-text {
      margin-top: 15px;
      font-size: 14px;
      color: #555;
    }

    .file-upload {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    /*input[type="file"] {*/
    /*    position: relative;*/
    /*    width: 150%;*/
    /*}*/

    /*input[type="file"]::file-selector-button {*/
    /*  width: 136px;*/
    /*  color: transparent;*/
    /*}*/

    /*input[type="file"]::before {*/
    /*  position: absolute;*/
    /*  pointer-events: none;*/
    /*  top: 10px;*/
    /*  left: 16px;*/
    /*  height: 20px;*/
    /*  width: 20px;*/
    /*  content: "";*/
    /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");*/
    /*}*/

    /*input[type="file"]::after {*/
    /*  position: absolute;*/
    /*  pointer-events: none;*/
    /*  top: 11px;*/
    /*  left: 40px;*/
    /*  color: #0964b0;*/
    /*  content: "Upload File";*/
    /*}*/

    /*input[type="file"]::file-selector-button {*/
    /*  border-radius: 4px;*/
    /*  padding: 0 16px;*/
    /*  height: 40px;*/
    /*  cursor: pointer;*/
    /*  background: radial-gradient(farthest-side at 55% 15%, rgba(240,240,240,1) 36%, rgba(232,237,244,1) 55%, rgba(215,225,236,1) 100%);*/
    /*  border: 1px solid rgba(0, 0, 0, 0.16);*/
    /*  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);*/
    /*  margin-right: 16px;*/
    /*  transition: background-color 200ms;*/
    /*}*/

    /*input[type="file"]::file-selector-button:hover {*/
    /*  background-color: #f3f4f6;*/
    /*}*/

    /*input[type="file"]::file-selector-button:active {*/
    /*  background-color: #e5e7eb;*/
    /*}*/
     #button1, #button2 {
      width: 150px;
      margin-right: 50px;
         margin-top: 30px;
         padding: 4px;
    }
