.demo input,select{
    width:50%;
    margin-bottom: 10px;
    padding:12px;
    border-radius: 5px;
}

.check{
    width:7%!important;
    float: left;
}

label{
    color:white;
}

p{
    margin-bottom:0px!important;
}

.demo{
    padding-top:9rem;
    background-color: transparent;
    color: black !important;
}

.demo p,h1, h2, h3, h4, label{
    color: black!important;
}

.modules{
    width:50%;
    margin:0 auto;
    padding-bottom: 20px;
}

.demo_card{
    padding:45px;
    border-radius: 10px;
}

label{
    float: left;
}

.header_text{
    color: #272556!important;
    margin-bottom: 10px!important;
}

.header_p{
    margin-bottom: 30px!important;
}

.modules p{
    text-align: left;
    padding-bottom: 5px;
}

@media (max-width: 700px) {
    .row_card{
        padding:15px
    }
    .demo_card{
        padding:25px;
        border:1px solid gray;
        border-radius: 10px;
        background-color: #FAF7FD;
    }
    .demo input{
        width:100%
    }
    .modules{
        width:100%
    }
    .demo{
        padding-top:7rem;
        background-color: transparent;
        color: black !important;
    }
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #EA6941;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    display: none;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }