.b-popup{
    width:100%;
    min-height:100%;
    overflow:hidden;
    position:fixed;
    top:0px;
    z-index: 9999;
}
.b-popup .b-popup-content {
    margin:15% 0px 0px 30%;
    width: 40%;
    border-radius: 10px;
    background: rgba(237, 243, 254, 0.5);
}

.b-popup-content h4 {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
padding-top: 10px;
}

.b-popup-content p {
    color: #fff;
    line-height: 20px;
    margin-bottom: 30px;
    padding: 0 10px;
}

/*------------------------------------------*/
/*	  Register Form Input
/*------------------------------------------*/

.b-popup-content .form-control {
    height: 44px;
    margin-bottom: 20px;
    border: 1px solid #4CAF50;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

input[type="text"],
input[type="email"],
textarea {
    background-color: #f0f0f0;
    color: #262626;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.form-control:focus {
    background-color: #f0f0f0;
    border-color: #ed6f61;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px #ed6f61, 0 0 3px #ed6f61;
    box-shadow: inset 0 1px 1px #ed6f61, 0 0 3px #ed6f61;
}

@media (max-width: 1024px) {
    .b-popup .b-popup-content {
        margin:15% 0px 0px 10%;
        width: 80%;
}
@media (max-width: 991px) {
    .b-popup .b-popup-content {
        margin:20% 0px 0px 10%;
        width: 80%;
}
@media (max-width: 768px) {
    .b-popup .b-popup-content {
        margin:15% 0px 0px 30%;
        width: 40%;
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .b-popup .b-popup-content {
        margin:15% 0px 0px 0%;
        width: 100%;
}
/* Mobile Landscape */
@media (max-width: 480px) {
    .b-popup .b-popup-content {
        margin:40% 0px 0px 0%;
        width: 100%;
}
/*------------------------------------------*/
/*	   Register Form Error Message
/*------------------------------------------*/

.error {
    color: #fc0000;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
}