* {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-family: "Poppins";
}
.downloadheaderpart {
    width: 100%;
    padding: 10px 50px 15px 50px;
    text-align: center;
    border-bottom: 1px solid #d9d9d9;
}
.downloadheaderpart img {
    width: 100%;
    max-width: 1200px;
}
.reportformboxarea {
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    background: #d6e4f3;
    display: flex;
    justify-content: space-between;
    margin-top: 23px;
    margin-left: auto;
    margin-right: auto;
}
.reportformboxarea .formare {
    width: 50%;
    padding: 18px 0 28px 0;
}
.reportformboxarea .formare form {
    width: 100%;
    max-width: 453px;
    margin: 0 auto;
}
.reportformboxarea .formare form .title {
    color: #000;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.reportformboxarea .formare form .subtitle {
    margin-top: 15px;
    color: #0e0e0e;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.reportformboxarea .formare form .radioparent {
    width: 100%;
    margin-top: 20px;
    display: flex;
}
.reportformboxarea .formare form .radioparent input[type="radio"] {
    display: none;
}
.reportformboxarea .formare form .radioparent input[type="radio"] + label {
    width: 184.972px;
    height: 67.115px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(242, 242, 242, 0.47);
    box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d3c3c;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-right: 20px;
}
.reportformboxarea .formare form .radioparent input[type="radio"] + label:last-child {
    margin-right: 0;
}
.reportformboxarea .formare form .radioparent input[type="radio"] + label span {
    width: 20px;
    height: 20px;
    border: 4px solid #3d3c3c;
    border-radius: 50%;
    margin-right: 10px;
}
.reportformboxarea .formare form .radioparent input[type="radio"]:checked + label {
    border: 1px solid #db2c1d;
    background: #db2c1d;
    box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
}
.reportformboxarea .formare form .radioparent input[type="radio"]:checked + label span {
    border-color: #fff;
}
.reportformboxarea .formare form .formfieldsparent {
    margin-top: 30px;
}
.reportformboxarea .formare form .formfieldsparent label {
    color: #2f2f2f;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}
.reportformboxarea .formare form .formfieldsparent .input {
    display: flex;
    border-radius: 10px;
    background: #fff;
    box-shadow: 6px 4px 13px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}
.reportformboxarea .formare form .formfieldsparent .input .iconbox {
    width: 58px;
    height: 58px;
    background: #f3f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reportformboxarea .formare form .formfieldsparent .input input[type="text"],
.reportformboxarea .formare form .formfieldsparent .input input[type="text"]::placeholder {
    color: #636363;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 10px;
    width: calc(100% - 50px);
    border: none;
    outline: none;
    border-radius: 10px;
}
.reportformboxarea .formare form .formfieldsparent .input input[type="text"]::placeholder {
    padding-left: 0;
}
.reportformboxarea .formare form .formfieldsparent .loginbtn {
    outline: none;
    border: none;
    width: 244.417px;
    height: 50px;
    border-radius: 10px;
    background: #00a3df;
    box-shadow: 6px 4px 13px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
}
.reportformboxarea .imagearea {
    width: 50%;
    position: relative;
}
.reportformboxarea .imagearea img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 0 20px 20px 0;
}
.reportfooter {
    margin-top: 90px;
    display: flex;
    align-items: flex-end;
}
.reportfooter img {
    width: 100%;
}
@media screen and (min-width: 0) and (max-width: 767px) {
    .downloadheaderpart {
        padding-left: 15px;
        padding-right: 15px;
    }
    .reportformboxarea {
        flex-flow: column;
        max-width: calc(100% - 30px);
    }
    .reportformboxarea .formare {
        order: 2;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .reportformboxarea .imagearea {
        order: 1;
        width: 100%;
    }
    .reportformboxarea .imagearea img {
        position: relative;
        border-radius: 20px 20px 0 0;
    }
    .reportformboxarea .formare form .title {
        font-size: 24px;
    }
    .reportformboxarea .formare form .subtitle {
        font-size: 20px;
    }
    .reportformboxarea .formare form .radioparent {
        justify-content: space-between;
    }
    .reportformboxarea .formare form .radioparent input[type="radio"] + label {
        width: calc(50% - 10px);
        margin-right: 0;
        height: 50px;
        font-size: 16px;
    }
    .reportformboxarea .formare form .radioparent input[type="radio"] + label span {
        width: 16px;
        height: 16px;
        border: 3px solid #3d3c3c; 
    }
    .reportformboxarea .formare form .formfieldsparent label {
        font-size: 16px;
    }
    .reportformboxarea .formare form .formfieldsparent .input .iconbox {
        width: 46px;
        height: 46px;
    }
    .reportformboxarea .formare form .formfieldsparent .input input[type="text"], .reportformboxarea .formare form .formfieldsparent .input input[type="text"]::placeholder {
        font-size: 16px;
    }
    .reportformboxarea .formare form .formfieldsparent .input img {
        width: 16px;
    }
    .reportformboxarea .formare form .formfieldsparent .loginbtn {
        height: 46px;
        font-size: 20px;
    }
    .reportfooter {
        margin-top: 40px;
    }
}