@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Icons');

* {
    font-family: "Manrope", sans-serif !important;
}

*[class^="fa-"],
*[class*=" fa-"] {
    font-family: "FontAwesome" !important;
}

:root {
    --dark: #142A5B;
    --primary-light: #F1F4FA;
    --primary: #5C71FE;
    --secondary: #0AE2D7;
}

.auth-container {
    display: flex;
    background-color: #F1F4FA;
    min-height: 100vh;
}

.left-side {
    flex: 1;
    background: url("../images/auth-bg.png");
    padding: 0 60px;
    padding-bottom: 30px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 76px;
}

.title {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.content {
    color: var(--dark);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.card {
    border-radius: 29px !important;
    max-width: 689px;
    width: 100%;
    padding: 0px 60px;

}

.logo img {
    width: 100px;
}

.righ-side-container {
    max-width: 600px;
}


@media (max-width: 991px) {
    .left-side {
        background: #fff;
        padding: 0 30px;
    }
}

@media (width<767px) {
    .logo {
        margin-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .logo img {
        width: 100px;
    }
}


.pl-2 {
    padding-left: 20px;
}

.form-control {
    background-color: #fff !important;
}

.form-check-label,
.form-check-input {
    cursor: pointer;
}

.carousel-item img {
    height: 435px;
}


.form-group.has-error .form-control,
.form-group.has-error .input-group-addon {
    border-color: #dd4b39 !important;
    box-shadow: none;
}

.form-group.has-error .help-block {
    color: #dd4b39;
}