body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    max-width: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

#responseData {
    background: transparent;
    color: #252525;
    padding: 10px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, .5);
    overflow: auto;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, .15);
    height: 300px;
    white-space: pre-wrap;
    line-height: normal;
}

.copy-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    font-size: 14px;
}

/* Spinner styles */
.loadingSpinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
}

.mb-3 {
    position: relative;
    margin: 30px 0;
    background: transparent;
}

/* No need to specify padding for inputs and selects */
.mb-3 input,
.mb-3 select {
    width: 100%; /* Adjusted width to accommodate padding */
    height: 37px;
    background: transparent;
    border-bottom: 2px solid #252525;
    border-radius: 0px;
    outline: none;
    font-size: 1em;
    font-weight: 600;
    padding: 5px;
    transition: all 0.3s ease;
}


.mb-3 label {
    position: absolute;
    top: 49%; /* Adjust this value for better alignment */
    left: 20px; /* Match left padding of input */
    transform: translateY(-50%);
    font-size: 1em;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent; /* Background to match the input background */
    padding: 0 5px;
}

.mb-3 input:focus ~ label,
.mb-3 input:not(:placeholder-shown) ~ label,
.mb-3 select:focus ~ label,
.mb-3 select:not([value=""]) ~ label {
    top: 50%; /* Adjust this value for better alignment */
    left: 20px;
    font-size: 1em;
    color: #00000024;
    background: transparent;
    padding: 0 5px;
}

.mb-3 input:focus,
.mb-3 select:focus {
    background-color: #ffffff70; /* Change to a fitting background color */
    border-color: #00000024;
    padding-left: 30px; /* Ensure consistent padding on focus */
}
@media only screen and (max-width: 768px) {
    .container {
        max-width: 90%;
    }
}