

body {
    background-color: #f8f9fa;
}

.form-floating.required label::after{
    content:" *";
    color:red;
}
.form-group.required label::after{
    content:" *";
    color:red;
}
.form-check.required label::after{
    content:" *";
    color:red;
}
.card.required .card-body .card-subtitle::after{
    content:" *";
    color:red;
}
.fs-xxl{
    font-size: 45px;
}
.fs-xl{
    font-size: 30px;
}
.logo{
    width: max(128px);

}
.heading{
    position: relative;
    display: flex;
    margin-top: 100px;
    margin-bottom: 100px;
    
    height: fit-content;
    
    flex-direction: column;
    background-color: #3970a7;
}
.heading-left-section{
    position: inherit;
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
    top: -50px;
    background-color: rgb(188, 224, 255);
}
.heading-right-section{
    position: inherit;
    display: flex;
    justify-content: center;
    margin-right: 20px;
    margin-left: 20px;
    bottom: -50px;
    background-color: rgb(188, 224, 255);
}
.floating-card{
    margin-left: 30px;
    margin-top: 30px;
    background-color: rgb(188, 224, 255);
}
.floating-card-title{
    position: relative;
    padding: 10px;
    background-color: #3970a7;
    color: white;
    top: -25px;
    left: -25px;
    
}
.floating-card-body{
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 25px;
}
@media (min-width:1025px)   { 
    .row{
        padding: 0px;
    }

    .heading{
        position: relative;
        display: flex;
        margin-top: 150px;
        margin-bottom: 150px;
        flex-direction: row;
        background-color: #3970a7;
    }
    .heading-left-section{
        position: inherit;
        display: flex;
        justify-content: center;
        margin-left: 50px;
        margin-right: 25px;
        top: -100px;
        width: 50%;
        background-color: rgb(188, 224, 255);
    }
    .heading-right-section{
        position: inherit;
        display: flex;
        justify-content: center;
        margin-right: 50px;
        margin-left: 25px;
        bottom: -100px;
        width: 50%;
        background-color: rgb(188, 224, 255);
    }
    .floating-card{
        margin-left: 30px;
        margin-top: 30px;
        background-color: rgb(188, 224, 255);
    }
    .floating-card-title{
        position: relative;
        padding: 10px;
        background-color: #3970a7;
        color: white;
        top: -25px;
        left: -25px;
        
    }
    .floating-card-body{
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 25px;
    }
}


