body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #f4f7f6;
            margin: 0;
            padding: 20px;
            justify-content: center;  /* Horizontally centers the form */
            align-items: center;  /* Vertically centers the form */

        }

        .file-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
            margin: 0px;
        }

        .file-container button {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            padding: 12px 25px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            background-color: #4CAF50;
            color: white;
            transition: background-color 0.3s ease;
            width: 200px;
        }

        .file-container button:disabled {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #ccc;
            cursor: not-allowed;
        }

        .file-container button:hover:enabled {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #45a049;
        }

        .file-status {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 14px;
            color: #666;
            margin-top: 10px;
            text-align: center;
        }

        .file-status p {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
        }




h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background-color: #ffffff;
  padding: 2px;
  width: 350px;
  border-radius: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  margin: 0 auto; /* Center it horizontally */
}

h3 {
  display: flex;
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    width: 650px;
    margin: 0 auto;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 120%;
}

h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90%;
  gap: 10px;
  background-color: #ffffff;
  padding: 10px;
  width: 650px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 85%;
  margin: 0 auto; /* Center it horizontally */

}

::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
  align-self: flex-end;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.flex-column > label {
  color: #151717;
  font-weight: 600;
}




.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 14px;
  color: black;
  font-weight: 1000;
}

.span {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: #151717;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.p {
  text-align: center;
  color: black;
  font-size: 14px;
  margin: 5px 0;
}

.btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  border: 1px solid #2d79f3;
  ;
}

/* Basic reset to remove margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Heading style */
//h1 {
//    color: #333;
//    margin-bottom: 20px;
//}

/* OTP details styling */
.otp-details {
    margin-top: 20px;
}

.otp-entry {
    background-color: #eaf0f4;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.otp-entry p {
    margin: 5px 0;
    color: #333;
}


/* Basic reset to remove margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main container to center everything */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: #f0f0f0; /* Light background color */
}

/* Inner container for content */
.container {
    max-width: 500px;
    padding: 20px;
    background-color: #ffffff; /* White background for content */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.disabled-button {
    background-color: red;
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: not-allowed; /* Shows disabled cursor */
    opacity: 0.6;
}


///* Main container to center everything */
//.main-container {
//    display: flex;
//    justify-content: center;
//    align-items: center;
//    height: 100vh; /* Full viewport height */
//    background-color: #f0f0f0; /* Light background color */
//}

///* Inner container for content */
//.container {
//    max-width: 600px;
//    padding: 20px;
//    background-color: #ffffff; /* White background for content */
//    border-radius: 8px;
//    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
//    text-align: center;
//}


//* Heading and subheading style */
//h3 {
//    color: #333;
//    margin-bottom: 20px;
//}

///* Form and input styling */
//.form {
//    display: flex;
//    flex-direction: column;
//    align-items: center;
//    margin-bottom: 20px;
//}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 20px;
  width: 450px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.inputForm {
    margin-bottom: 20px;
    position: relative;
    display: table-row;
    justify-content: center;
}

//.inputForm {
//  border: 1.5px solid #ecedec;
//  border-radius: 10px;
//  height: 50px;
//  display: flex;
//  align-items: center;
//  padding-left: 10px;
//  transition: 0.2s ease-in-out;
//}

.input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

//.input {
//    margin-left: 10px;
//    border-radius: 10px;
//    border: none;
//    width: 100%;
//    height: 100%;
//  }

/* Button styling */
.button-container {
    margin-top: 20px;
}

/* Button styling */
.button-submit {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.button-submit:hover {
    background-color: #45a049;
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 10px;
    }
    .container {
        max-width: 90%;
        padding: 15px;
    }
    .form {
        width: 100%;
        padding: 15px;
    }
    .input {
        font-size: 16px;
        padding: 8px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    h1, h2, h3 {
        font-size: clamp(16px, 4vw, 24px);
        text-align: center;
    }

    .button-submit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
        text-align: center;
    }

    .image img {
        width: 100%;
        height: auto;
    }

    .form {
        width: 100%;
        max-width: 400px;
        margin: auto;
        padding: 15px;
    }

    .inputForm {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .input {
        width: 100%;
        padding: 10px;
    }

    .button-submit {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

