
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.progress-label-left {
    float: left;
    margin-right: 0.5em;
    line-height: 1em;
}
.progress-label-right {
    float: right;
    margin-left: 0.3em;
    line-height: 1em;
}
.star-light {
    color:#e9ecef;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.col-sm-4{
    position: relative;
    left: 35%;
}
.text-center img {
    max-width: 100px;
    height: auto;
}

.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.g-recaptcha{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: auto;
    margin: 0 0;
   
}
@media screen and (max-width: 1200px) {
    .col-sm-4 {
        left: 25%;
    }
}

@media screen and (max-width: 992px) {
    .col-sm-4 {
        left: 15%;
    }
    
    .row {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .col-sm-4 {
        left: 0;
        width: 100%;
    }
    
    .row {
        flex-direction: column;
        padding: 10px;
    }
}

@media screen and (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    .progress-label-left,
    .progress-label-right {
        float: none;
        display: block;
        margin: 0.3em 0;
    }
}