.inputText {
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1) !important;
}

  .input-container {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

/* Style the input field */
.input-container input {
    width: 100%;
    padding: 12px 8px 12px 8px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

/* Style the label */
.input-container label {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6a6a6a;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Focus style for the input */
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
    top: -8px;
    left: 30px;
    font-size: 12px;
    font-weight: bold;
    color: #3b5a9b;
    background-color: white;
    transform: translateY(0);
}

/* For when the input is not empty (when there's data) */
.input-container input:not(:focus):not(:placeholder-shown) + label {
    top: -8px;
    left: 30px;
    font-size: 12px;
    font-weight: bold;
    color: #3b5a9b;
    background-color: white;
    transform: translateY(0);
}