/* *************login****************** */
.bgC1 {
    background-color: #00000099;
}
/* Transparent input background */
.inpBGC {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Light border for visibility */
    color: #fff; /* White text color */
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

/* Placeholder text styling */
.inpBGC::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Light gray placeholder */
}

/* Focus effect */
.inpBGC:focus {
    border-color: #ffffff; /* Full white border on focus */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}
