:root {

    /* Color Variable */
    --theme-blue-color: #2966f4;
    --theme-lightblue-color: #F1F1FF;
    --theme-dark-color: #020c26;

    --facebook-color: #316FF6;
    --twitter-color: #000000;
    --youtube-color: #ff0033;
    --linkedin-color: #0077B5;
    --pinterest-color: #E60023;
    --google-color: #ff0033;

    /* Font Size Variable */
    --p-fs: 14px;
    --content-space: 20px;
    --border-color: #2f2b3d1f;
    --auth-card-shadow: 0 .1875rem .75rem 0 rgba(47, 43, 61, .14);

}

/* Common CSS */
* {
    margin: 0;
    padding: 0
}

body {
    font-family: 'Inter';
    font-weight: 400;
    font-size: var(--p-fs);
    color: var(--theme-dark-color);
    background-color: var(--theme-lightblue-color);
}

p {
    font-size: var(--p-fs);
    font-weight: 500;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--theme-blue-color);
    font-weight: 500;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
}

a:hover {
    color: var(--theme-dark-color);
}

a:focus {
    outline: none;
    text-decoration: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Table */
table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 100%;
}

caption,
th,
td {
    vertical-align: top;
    text-align: left;
    font-weight: normal;
}

/* Lists */
ul,
ol {
    list-style: none;
    margin: 0;
}


/* Forms */
form {
    display: block;
}

fieldset {
    border: 0;
}

legend {
    display: none;
}

/* Form Input CSS */
.login-input .icon {
    left: 14px;
    top: 26px;
    font-size: 18px;
}

.login-input .form-floating>.form-control,
.login-input .form-floating>.form-control-plaintext,
.login-input .form-floating>.form-select {
    height: calc(3rem + calc(var(--bs-border-width)* 2));
    min-height: calc(3rem + calc(var(--bs-border-width)* 2));
    padding-left: 45px;
    box-shadow: none;
    font-size: var(--p-fs);
    font-weight: 500;
    color: var(--theme-dark-color);
}

.login-input .form-floating>textarea.form-control {
    height: 100px;
    resize: none;
}

.login-input .form-floating .form-control:focus {
    border-color: var(--theme-blue-color);
}

.login-input .form-floating label {
    font-size: var(--p-fs);
    margin-left: 35px;
    line-height: 3rem;
    padding: 0 12px;
}

.login-input .form-floating>.form-control:not(:placeholder-shown)~label::after {
    background-color: transparent;
}

.login-input .form-floating strong {
    font-weight: 400;
}

.login-input.mobile-country-code-group .form-select.code {
    max-width: 110px;
    box-shadow: none;
    font-size: var(--p-fs);
    padding: 12px 25px 12px 45px;
    background-position: right .30rem center;
    height: calc(3rem + calc(var(--bs-border-width)* 2));
    min-height: calc(3rem + calc(var(--bs-border-width)* 2));
    border-top-left-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
}

.login-input.mobile-country-code-group .form-select.code:focus {
    background-color: transparent;
}

.login-input.mobile-country-code-group .form-floating .form-control {
    padding-left: 1rem;
}

.login-input.mobile-country-code-group .form-floating label {
    margin-left: 0;
}

/* .login-input .form-select:focus {
    border-color: var(--theme-blue-color);
} */

/* Fancy Checkbox CSS */
.fancy-checkbox span {
    padding-left: 38px;
    line-height: 24px;
    color: var(--theme-dark-color);
}

.fancy-checkbox span::before {
    content: "";
    border: 1px solid var(--border-color);
    border-radius: 6px;
    height: 24px;
    width: 24px;
    cursor: pointer;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.fancy-checkbox span::after {
    content: "\f00c";
    font-size: 12px;
    color: var(--bs-white);
    font-family: fontawesome;
    cursor: pointer;
    position: absolute;
    left: 7px;
    top: 1px;
    -webkit-transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0);
    transition: all 0.2s ease-in-out;
    transform: scale(0);
}

.fancy-checkbox input[type="checkbox"]:checked+span::before {
    background-color: var(--theme-blue-color);
    border-color: var(--theme-blue-color);
}

.fancy-checkbox input[type="checkbox"]:checked+span::after {
    transform: scale(1);
    -webkit-transform: scale(1);
}


/* Button CSS */
.btn {
    font-size: var(--p-fs);
    font-weight: 500;
    line-height: 38px;
    padding: 0px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: color-mix(in srgb, var(--bs-white) 30%, transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s, opacity 1s;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.btn.btn-primary {
    background-color: var(--theme-blue-color);
    border: 1px solid var(--theme-blue-color);
}

.btn.btn-primary:hover {
    background-color: var(--theme-dark-color);
    border: 1px solid var(--theme-dark-color);
}

.btn.btn-outline-warning::after {
    background-color: color-mix(in srgb, var(--bs-white) 30%, transparent);
}

.btn.btn-primary {
    background-color: var(--theme-blue-color);
    border: 1px solid var(--theme-blue-color);
}



/* Header CSS */
.header .navbar {
    padding: 12px 0;
}

.header .navbar .container {
    padding: 0 20px;
}

.header .navbar .navbar-brand img {
    width: auto;
    height: 56px;
}

.header .navbar .nav-link {
    font-size: var(--p-fs);
    font-weight: 500;
    color: var(--theme-dark-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .navbar .nav-link:hover {
    color: var(--theme-blue-color);
}

.header .navbar .nav-link .icone {
    line-height: 24px;
}

.header .navbar .mobile-menu {
    padding: 5px 12px;
    font-size: 22px;
    background-color: var(--theme-blue-color);
    color: var(--bs-white);
    border-color: var(--theme-blue-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .navbar .mobile-menu:hover {
    color: var(--theme-blue-color);
    background-color: transparent;
}

.header .navbar .mobile-menu:focus {
    box-shadow: none;
}






/* Footer CSS */
.footer-section {
    background-color: var(--theme-blue-color);
    padding: 15px 0;
}

.footer-section .copy-right,
.footer-section .contect-pages-link {
    line-height: 20px;
}



/* Auth Pages CSS */
.auth-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 80px);
}

.auth-wrapper .auth-inner {
    max-width: 420px;
    width: 100%;
}

.auth-wrapper .auth-inner.register-inner {
    max-width: 550px;
}

.auth-wrapper .auth-inner .card.auth-card {
    box-shadow: var(--auth-card-shadow);
    border-radius: 20px;
}

.auth-wrapper .auth-inner .card.auth-card .card-body {
    padding: 42px;
}

.auth-wrapper .auth-inner .card.auth-card .card-body .auth-title h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    color: var(--theme-dark-color);
}

.auth-wrapper .auth-inner .card.auth-card .card-body .auth-title h1 strong {
    font-weight: unset;
    color: var(--theme-blue-color);
}

.auth-wrapper .auth-inner .card.auth-card .card-body .divider .divider-inner:before,
.auth-wrapper .auth-inner .card.auth-card .card-body .divider .divider-inner:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    border-top: 1px solid var(--border-color);
}

.auth-wrapper .auth-inner .card.auth-card .card-body .divider .divider-inner:before {
    right: 100%
}

.auth-wrapper .auth-inner .card.auth-card .card-body .divider .divider-inner:after {
    left: 100%
}

.form-title.session-terminate h2 {
    font-size: 20px;
}


.social-links ul {
    gap: 10px;
}

.social-links ul li a {
    width: 30px;
    height: 30px;
    color: var(--theme-dark-color);
    transition: color 1s ease, background-color 1s ease;
    -webkit-transition: color 1s ease, background-color 1s ease;
    -moz-transition: color 1s ease, background-color 1s ease;
    -o-transition: color 1s ease, background-color 1s ease;
}

.social-links ul li a:hover {
    color: var(--theme-blue-color);
}

.social-links ul li a[aria-label="Facebook"] {
    color: var(--facebook-color);
    background-color: color-mix(in srgb, var(--facebook-color) 20%, transparent);
}

.social-links ul li a[aria-label="Twitter"] {
    color: var(--twitter-color);
    background-color: color-mix(in srgb, var(--twitter-color) 20%, transparent);
}

.social-links ul li a[aria-label="Youtube"] {
    color: var(--youtube-color);
    background-color: color-mix(in srgb, var(--youtube-color) 20%, transparent);
}

.social-links ul li a[aria-label="Linkedin"] {
    color: var(--linkedin-color);
    background-color: color-mix(in srgb, var(--linkedin-color) 20%, transparent);
}

.social-links ul li a[aria-label="Pinterest"] {
    color: var(--pinterest-color);
    background-color: color-mix(in srgb, var(--pinterest-color) 20%, transparent);
}

.social-links ul li a[aria-label="Google"] {
    color: var(--google-color);
    background-color: color-mix(in srgb, var(--google-color) 20%, transparent);
}

/* Hover state with full opacity */
.social-links ul li a[aria-label="Facebook"]:hover {
    background-color: var(--facebook-color);
    color: var(--bs-white);
}

.social-links ul li a[aria-label="Twitter"]:hover {
    background-color: var(--twitter-color);
    color: var(--bs-white);
}

.social-links ul li a[aria-label="Youtube"]:hover {
    background-color: var(--youtube-color);
    color: var(--bs-white);
}

.social-links ul li a[aria-label="Linkedin"]:hover {
    background-color: var(--linkedin-color);
    color: var(--bs-white);
}

.social-links ul li a[aria-label="Pinterest"]:hover {
    background-color: var(--pinterest-color);
    color: var(--bs-white);
}

.social-links ul li a[aria-label="Google"]:hover {
    background-color: var(--google-color);
    color: var(--bs-white);
}

/* Privacy Policy And Terms & Services */
.article-title h1 {
    color: var(--theme-blue-color);
    font-weight: 800;
    line-height: 54px;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.article-description h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

.article-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.article-description p {
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.article-description p a:hover {
    color: var(--theme-blue-color);
    text-decoration: underline;
}

.article-description ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.article-description ul li::before {
    content: "\f101";
    font-size: 16px;
    font-family: fontawesome;
    margin-right: 15px;
    color: var(--theme-blue-color);
}

.article-description ul li+li {
    margin-top: 10px;
}

/* .article-description h4{
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--theme-blue-color);
    font-weight: 600;
    margin-bottom: 10px;
}
*/

@media (max-width: 992px) {}

@media (max-width: 767px) {

    .article-title h1 {
        line-height: 40px;
        font-size: 34px;
    }

    .article-description h2 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 6px;
    }

    .article-description h3 {
        font-size: 16px;
    }

    .article-description p {
        font-size: 14px;
        line-height: 20px;
    }

    .article-description ul {
        padding-left: 20px;
    }

    .article-description ul li {
        font-size: 14px;
        line-height: 20px;
    }

    .article-description ul li+li {
        margin-top: 6px;
    }

    .article-description ul li::before {
        font-size: 14px;
        margin-right: 10px;
    }
}

@media(max-width: 576px) {
    .btn {
        padding: 0px 10px;
    }

    .header .navbar .container {
        padding: 0 12px;
    }

    .header .navbar .navbar-brand img {
        height: 45px;
    }

    .auth-wrapper .auth-inner .card.auth-card .card-body {
        padding: 20px;
    }

    .fancy-checkbox span {
        padding-left: 28px;
    }
}

@media(max-width: 480px) {
    .auth-wrapper .auth-inner .card.auth-card .card-body .form-wrapper.login-form .form-btns {
        flex-wrap: wrap;
    }

    .article-title h1 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .article-description h2 {
        font-size: 20px;
    }

    .article-description p {
        margin-bottom: 6px;
    }

    .article-description ul {
        padding-left: 10px;
    }

}

@media(max-width: 380px) {
    .login-form .g-recaptcha {
        transform: scale(0.85);
    }
}

.google-btn {
    font-size: var(--p-fs);
    font-weight: 500;
    line-height: 38px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--theme-blue-color);
    padding: 0 20px 0px 4px;
    border-radius: 0.375rem;
    border: 1px solid var(--theme-blue-color);
}

.google-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: color-mix(in srgb, var(--bs-white) 30%, transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s, opacity 1s;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    border: 1px solid var(--theme-blue-color);

}

.google-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.google-btn .google-btn-icon {
    height: 30px;
    margin-right: 12px;
    min-width: 30px;
    width: 30px;
    background-color: white;
    border-radius: 0.375rem;
    padding: 7px;
}

.google-btn .google-btn-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.google-btn .google-btn-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Inter';
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
    color: white;
}

.google-btn .google-btn-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.google-btn:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    background-color: var(--theme-dark-color);
    border: 1px solid var(--theme-dark-color);
}

.google-btn:not(:disabled):hover .google-btn-state {
    background-color: var(--theme-dark-color);
    border: 1px solid var(--theme-dark-color);
}