:root {
    --accent-color: #1864ab;
}

html {
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    font-weight: 400;
    color: #333;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    height: 100%;
    margin: 0;
}

.header .logo {
    margin-bottom: 2rem;
}

.header .title {
    font-weight: 700;
    font-size: 2.25rem;
    margin: 0;
    margin-bottom: 1rem;
}

body.login-cloak,
.col-2,
body.login.login-action-login .wp-login-logo > a,
body.login #backtoblog {
    display: none;
}

.header {
    line-height: 1.5;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.col-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.col-1 .content {
    width: 80%;
    max-width: 500px;
}
#login h1 {display: none !important;}
#login input[type=text],
#login input[type=password] {
    color: #444;
    padding: 16px 14px;
    border: 1px solid #bbb;
    border-radius: 8px;
    margin: 0px;
    display: block;
    width: 100%;
    outline: none;
}

#login input[type=text]:focus,
#login input[type=password]:focus {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.user-pass-wrap label,
label:has(+ input) {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.wp-pwd {
    position: relative;
}

.wp-hide-pw {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    border: 0;
    color: #6c6c6c;
    font-size: 1.5em;
}

.submit #wp-submit {
    width: 100%;
    font-size: .925em;
    background-color: var(--accent-color);
    border: 0;
    padding: 16px 14px;
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

.wp-login-lost-password {
    text-align: right;
}

.cols,
.col-1,
.col-2 {
    height: 100%;
}

.notice {
    color: #1864ab;
    background-color: #e7f5ff;
    border-left: 4px solid currentColor;
    padding: 0.25em 1em;
    font-size: 0.9em;
}

.notice-error {
    color: #c92a2a;
    background-color: #fff5f5;
}

.notice + .notice {
    margin-top: 1em;
}

#nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    font-weight: 500;
}

.privacy-policy-page-link a,
#nav a {
    color: var(--accent-color);
    font-weight: 500;
}


.privacy-policy-page-link {
    font-size: 0.85em;
    text-align: center;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    --swiper-pagination-color: #eee;
}

@media screen and (min-width: 900px) {
    .col-2-enabled .cols {
        display: flex;
    }

    .col-2-enabled .col-1,
    .col-2-enabled .col-2 {
        width: 50%;
    }

    .col-2-enabled .col-2 {
        display: flex;
        align-items: center;
        background-color: var(--accent-color);
        background-image: url(https://nova.devsplcomunic.com.br/wp-content/uploads/2025/03/loginback.png);
        background-position: top;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .col-2 .swiper {
        width: 100%;
    }

    .col-2 .swiper-slide {
        position: relative;
        top: -10000px;
        justify-content: center;
    }

    .col-2 .swiper-slide.swiper-slide-active {
        top: 0;
        display: flex;
        align-items: center;
    }

    .col-2 .swiper-slide img {
        max-width: 70%;
    }

    .col-2 .swiper-pagination-bullet {
        transition: all 300ms;
    }

    .col-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 1.5em;
        border-radius: 10px;
    }
}