body {
    
    background-size: cover;
    background-attachment: fixed;
}

.bg-inner {
    background-color: white;
    border: white solid 1px;
    border-radius: 20px;
}

.heading {
    font-family: 'Rowdies', cursive;
    font-size: 3rem;
    z-index: 10;
    position: relative;
}

.profile {
    width: 5rem;
    left: 43%;
    right: 40%;
    z-index: 11;
    position: relative;
}

.innerup::after {
    background-size: cover;
    background-attachment: fixed;
    border-radius: 2rem;
    content: "";
    background: #e72428b8;
    position: absolute;
    top: -1px;
    left: -3px;
    right: -2px;
    bottom: 0;
    z-index: 1;
    border-bottom-left-radius: 66px;
    border-bottom-right-radius: 53px;

}

.img-profile {
    border-radius: 54px;
    width: 100%;
    height: 76px;
}

.headingContainer {
    left: 43%;
    right: 40%;
}

/* floating label */
.form-control {
    border: none !important;
    outline: none !important;
    border-bottom: red 1px solid !important;
}

.form-control:focus {
    border: none !important;
    outline: none !important;
    border-bottom: red 1px solid !important;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-placeholder {
    position: absolute;
    top: 0;
    padding: 7px 0 0 13px;
    transition: all 200ms;
    opacity: 0.5;
}

.form-control:focus+.form-control-placeholder,
.form-control:valid+.form-control-placeholder {
    font-size: 90%;
    transform: translate3d(0, -100%, 0);
    opacity: 1;
}