:root {
    --bs-primary: #0274BE;
    --bs-secondary: #CB2E7B; 
}

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    background-color: #bf7a6b;
    background-image: -webkit-linear-gradient(bottom left, #bf7a6b 0%, #e6d8a7 100%);
    background-image: linear-gradient(to top right,#bf7a6b 0%, #e6d8a7 100%);
}

.color-white{
    color: #fff;
}

.form-wrap{
    width: 550px;
}

.heading{
    text-transform: capitalize;
    letter-spacing: 2px;
    font-weight: bold;
}

@media only screen and (max-width: 700px){
    .form-wrap{
        width: 100%;
    }
}

/* Custom File Upload */

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
    /* background: #fff; */
    border-radius: 5px 10px 10px 5px;
    overflow: hidden;
}

.file-upload-wrapper:before {
    content: "Upload";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 60px;
    background: var(--bs-secondary);
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: 60px;
    padding: 0 30px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

.file-upload-wrapper:hover:before {
    background: var(--bs-primary);
}

.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 15px;
    display: block;
    width: 100%;
    pointer-events: none;
    z-index: 20;
    height: 100%;
    line-height: 40px;
    color: #999;
    border-radius: 5px 10px 10px 5px;
    font-weight: 300;
}

.file-upload-wrapper input.file-upload-field {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}