﻿:root {
    --login-primary: #079195;
    --login-primary-light: #00AEAC;
    --login-primary-hover: #126673;
    --login-primary-grad: linear-gradient(95deg, rgba(19,99,113,1) 0%, rgba(0,174,172,1) 70%);
    --login-secondary: #727b83;
}

a{
    color:var(--login-primary);
}
    a:hover,
    a:focus{
        color: var(--login-primary-hover);
    }

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background: #DADADA;
}

body,
p,
label,
.btn {
    font-family: "Poppins", Raleway sans-serif;
    color: #6c757d;
    font-size: 0.938rem;
}

h2,
h3,
h4 {
    font-weight: 400;
    margin: 0 0 0.875rem 0;
    padding: unset;
    color: #4D4D4D;
}

h5 {
    font-weight: 400;
    margin: 0 0 0.875rem 0;
    padding: unset;
}
h1,
h3 {
    font-size: 1.5rem;
    color:#222;
}

h4 {
    font-size: 1.25rem;
}
h2,
h5 {
    font-size: 1.125rem;
}

.col-white{
    color:#fff;
}

.text-danger {
    color: #c70f77;
}

.bg-lgrey {
    background-color: #efefef;
}

.bg-main-grad {
    background: var(--login-primary-grad);
    color: #fff;
}

.font-col {
    color: #6c757d;
}

.mb-3 {
    margin-bottom: 1.25rem;
}

.mt-15 {
    margin-top: 15px;
}

.d-flex-center {
    display: flex;
    justify-content: center;
}
.d-flex-center-col {
    display: flex;
    flex-direction:column;
    align-items:center;
}

.f-cen {
    display: flex;
    justify-content: center;
}

.login-setup {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content-login,
.login-content {
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 1rem;
    overflow: hidden;
}

.login-content {
    width: 550px;
}

.login-content-login {
    width: 70%;
}

.login-row {
    display: flex;
    align-items: stretch;
}

.login-col {
    flex: 1;
    position: relative;
}

.lc-svg-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
}

    .lc-svg-dots img {
        width: 100%;
        height: auto;
    }

.lc-p {
    padding: 3rem;
}


.lc-qlinks {
    border: 1px #ccc solid;
    border-radius: 10px;
    padding: 15px;
}

.logoLogin {
    max-width: 300px;
    margin-bottom: 30px;
}

.w-100 {
    width: 100%;
}

.btns-row {
    display: flex;
    padding: 10px 5px;
}

.btns-col {
    margin: 2px 15px;
    width: 50%;
}

.btn-social-login {
    border: 2px transparent solid;
    background: rgba(255,255,255,0.5);
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    padding: unset;
    margin-right: 10px;
}

    .btn-social-login:hover {
        background: #fff;
        border: 2px #fff solid;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transition: all 0.2s;
    }

.btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #8A92A6;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border-radius: 25px;
    border: unset;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

    .btn.btn-primary {
        background-color: var(--login-primary);
        color: #fff;
    }

        .btn.btn-primary:hover,
        .btn.btn-primary:focus {
            background-color: var(--login-primary-hover);
        }

    .btn.btn-outline-red {
        background-color: #fff;
        border: 2px #D51427 solid;
        color: #D51427;
    }

        .btn.btn-outline-red:hover,
        .btn.btn-outline-red:focus {
            background-color: #D51427;
            color:#fff;
        }

    .btn.btn-danger {
        color: #fff;
        background-color: #c03221;
        text-decoration: none;
    }

        .btn.btn-danger:hover {
            color: #fff;
            background-color: #bb2d3b;
        }

.btn-block {
    display: block;
}

label {
    display: inline-block;
    color: #232d42
}

.form-label {
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #8A92A6;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #dedede;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0.25rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}


/*--- Gen List ---*/
.gen-list {
    margin: unset;
    padding: unset;
}

    .gen-list li {
        list-style-type: none;
        margin: 5px 0;
    }

        .gen-list li a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

            .gen-list li a i {
                font-size: 15px;
                margin-right: 5px;
            }


/*-- social logins --*/
.soc-login {
    margin: unset;
    padding: unset;
}

    .soc-login li {
        list-style-type: none;
    }

    .soc-login li {
        list-style-type: none;
    }

        .soc-login li a {
            display: flex;
            border: 1px solid;
            width: 150px;
            border-radius: 35px;
            padding: 5px 15px;
            margin-bottom: 10px;
            text-decoration: none;
        }

            .soc-login li a.soc-google {
                border-color: #e7403b;
                color: #e7403b;
            }

            .soc-login li a.soc-linkedin {
                border-color: #0678b6;
                color: #0678b6;
            }

            .soc-login li a.soc-facebook {
                border-color: #4b69b1;
                color: #4b69b1;
            }

@media (max-width:1366px) {
    .login-content {
        width: 50%;
    }

    .login-content-login {
        width: 90%;
    }
}

@media (max-width:1024px) {
    .login-content {
        width: 85%;
    }

    .login-content-login {
        width: 90%;
    }
}

@media (max-width:768px) {
    .login-setup {
        height: unset;
    }

    .login-content-login,
    .login-content {
        width: 95%;
    }

    .login-row {
        display: flex;
        flex-direction: column;
    }

    .lc-svg-dots {
        display: none;
    }
}

@media (max-width:500px) {
    .login-col {
        width: 100%;
    }

    .btns-row {
        flex-direction: column;
    }

    .btns-col {
        margin: 6px 0;
        width: 100%;
    }
}
