.developerrow {
    margin-top: 7%;
}
.form-control {
    background-color: white;
    border: none;
    border-radius: 30px;
    color: gray;
}
.form-control::placeholder {
    color: gray;
}
.custom-file-input {
    display: none;
}
.custom-file-label {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 30px;
    cursor: pointer;
}
.custom-file-label::after {
    content: 'No file chosen';
    display: inline-block;
    color: white;
}
input[type="file"]:focus + .custom-file-label {
    outline: none;
}
label {
    color: #fff;
}