/* Importing google Fonts */
@import url("https://fonts.googleapis.com/css?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "sans-serif";
}

body {
    background: #007bff;
    position: relative;
}

.container{
    background-color: #eee;
    box-shadow: 0px 4px 8px 0 rgba(0 0 0 / 0.2), 0px 6px 20px 0 rgba(0 0 0 / 0.19);
    padding: 20px;
    border: none;
    border-radius: 5px;

}

.title{
    text-align: center;
    padding: 30px 0;
}

.title .heading{
    color: #fff;
    font-weight: 600;
}

.title .heading span{
    position: relative;
}

.title .heading span::before{
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background-color: #fff;
}

label{
    color: #000;
    font-weight: 500;
}

.req{
    color: #d72149;
}