.neo-wrapper {
    background-color: #e0e5ec;
    /* Signature Neumorphic base color */
    padding: 2rem 0;
    font-family: inherit;
    color: #4a5568;
}

/* Raised Card Effect */
.neo-wrapper .card {
    background-color: #e0e5ec;
    border: none;
    border-radius: 25px;
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6),
        -9px -9px 16px rgba(255, 255, 255, 0.5);
}

.neo-wrapper h1,
.neo-wrapper h4 {
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Sunken Input Fields (Pill Shape) */
.neo-wrapper .input-group {
    background-color: #e0e5ec;
    border-radius: 50px;
    box-shadow: inset 6px 6px 10px 0 rgba(163, 177, 198, 0.6),
        inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5);
    border: none;
    padding: 5px 15px;
    align-items: center;
    margin-bottom: 20px !important;
}

/* Removing default Bootstrap borders/backgrounds from inputs */
.neo-wrapper .form-control,
.neo-wrapper select.form-control,
.neo-wrapper textarea.form-control {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    color: #4a5568;
}

.neo-wrapper .form-control:focus,
.neo-wrapper select.form-control:focus,
.neo-wrapper textarea.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    outline: none;
}

/* Styling the icons */
.neo-wrapper .input-group-text {
    background-color: transparent;
    border: none;
    color: #718096;
    padding-left: 0;
}

/* Raised Teal Submit Button */
.neo-wrapper .btn-primary1 {
    background-color: #52B6C9;
    /* Matches the image's teal button */
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6),
        -6px -6px 12px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    margin-top: 10px;
}

/* Tighten padding and style the "No file chosen" text */
.neo-wrapper input[type="file"] {
    padding: 4px 15px 4px 4px !important;
    color: #718096;
}

/* Style the "Choose File" button to look like a raised Neumorphic pill */
.neo-wrapper input[type="file"]::file-selector-button {
    background-color: #e0e5ec;
    color: #52B6C9;
    /* Matches your teal theme */
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    margin-right: 15px;
    font-weight: bold;
    cursor: pointer;
    /* Raised shadow effect */
    box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.6),
        -4px -4px 8px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
}

/* Pressed state for the choose file button */
.neo-wrapper input[type="file"]::file-selector-button:active {
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.6),
        inset -3px -3px 6px rgba(255, 255, 255, 0.5);
}

.neo-wrapper input[type="file"] {
    padding: 4px 15px 4px 4px !important;
    color: transparent;
    /* This makes "No file chosen" invisible */
}

/* 1. Make the file text transparent so "No file chosen" is hidden */
.neo-wrapper input[type="file"] {
    padding: 0 15px !important;
    color: transparent;
    cursor: pointer;
}

/* 2. Hide the "Choose File" text inside the button */
.neo-wrapper input[type="file"]::file-selector-button {
    background-color: transparent;
    /* No background needed since the pill holds it */
    border: none;
    width: 0;
    padding: 0;
    margin: 0;
    font-size: 0;
    /* This completely hides the "Choose File" text */
    color: transparent;
}

/* Button click/active state */