@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
input {
    font-family: "Poppins", sans-serif;
    background: #bdbdd4;
}

.alogin-section .alogin-content {
    position: relative;
}


.contactUs {
    margin-top: 30px;
    position: relative;
    padding: 50px 0px;
}

.contactUs:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 65%;
    height: 100%;
    background-color: #f1f0fe;
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
}


.contactUs .section-heading {
    margin-right: 110px;
    margin-bottom: 0px;
}

.contactUs .section-heading p {
    margin-top: 20px;
}


.contactUs .contact-us-content {
    border-radius: 25px;
    padding: 80px;
    background-color: #7a6ad8;
    position: relative;
    z-index: 1;
}

.contactUs .contact-us-content::before {
    background: url('../images/contact-dec-01.png');
    position: absolute;
    left: 50%;
    transform: translateX(-149px);
    opacity: 0.5;
    top: 0;
    width: 318px;
    height: 119px;
    content: '';
    z-index: 2;
}

.contactUs .contact-us-content::after {
    background: url('../images/contact-dec-02.png');
    position: absolute;
    right: 0;
    bottom: 0;
    width: 183px;
    height: 149px;
    content: '';
    z-index: 2;
}

#contact-form input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-color: rgba(249, 235, 255, 0.15);
    border: none;
    outline: none;
    font-weight: 300;
    padding: 0px 20px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

#contact-form input::placeholder {
    color: #fff;
}

#contact-form textarea {
    width: 100%;
    height: 120px;
    border-radius: 25px;
    background-color: rgba(249, 235, 255, 0.15);
    border: none;
    outline: none;
    font-weight: 300;
    padding: 20px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}


#contact-form button {
    border: none;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    background-color: #fff;
    padding: 0px 35px;
    border-radius: 25px;
    color: #7a6ad8;
    transition: all .4s ease-out;
    position: relative;
    z-index: 3;
}

#contact-form button:hover {
    background-color: #7a6ad8;
    color: #fff;
    border-radius: 25px;
    border: 1px solid #fff;
}

.contact-us-content .more-info {
    text-align: center;
    background: rgb(85, 0, 227);
    background: linear-gradient(90deg, rgba(85, 0, 227, 1) 0%, rgba(198, 61, 255, 1) 100%);
    border-radius: 0px 0px 23px 23px;
    padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
    text-align: center;
    margin-bottom: 30px;
}

.contact-us-content .more-info i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.form-outline input {
    border: 1px solid rgb(223, 223, 218);
    line-height: 1;
    font-weight: 500;
    font-size: 1.2rem;
    color: #333;
}

.form-outline input::placeholder {
    color: #aaa;
    font-weight: 500;

}


.form-error {
    color: red;
    margin-top: 200px;
}

.error {
    color: #af4242;
    background-color: #fde8ec;
    padding:10px;
}

.logouterr {
    color: #af4242;
    background-color: #fde8ec;
    padding: 10px;
}

.logo {
    width: 70px;
    height: 70px;
    padding-top: 5px;
    margin: 180px 0 0 100px;

}

.logo-txt {
    color: white;
    width: 350px;
    letter-spacing: 1px;
    margin: 190px 0 0 10px;
    font-family: 'Poppins', sans-serif;
}




a {
    position: relative;
    text-decoration: none;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #7a6ad8;
    transition: width .5s;
}

a:hover:after {
    width: 100%;
}

nav>div>a.navbar-brand {

    margin-left: 400px;
    font-family: "Roboto", sans-serif;
    font-weight: 1000;
    font-style: italic;
    letter-spacing: 1px;
}


.form-control {
    width: 400px;
    margin-left: 20px;
    height: 50px;
}

.form-group input {
    background: #ccccd1;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 500;
    font-size: 1.2rem;
    color: #333;
}

@media screen and (max-width: 991px) {
    .contactUs {
        padding-top: 20px;
    }

    .contactUs .section-heading {
        margin-right: 0px;
    }

    .contactUs .contact-us-content {
        padding: 50px;
    }

    .section-heading img {
        display: none;
    }

}