:root {
    --bg: #0f1226;
    --card-bg: #ffffff;
    --primary: #6b63b5;
    --primary-soft: #f1effb;
    --accent: #f4c15d;
    --muted: #6b7280;
    --purple-1:#7A28FF;
    --purple-2:#5B1EBB;
    --text:#221133;
    --glass:rgba(255,255,255,0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins';
    min-height: 100vh;
    /*background: radial-gradient(circle at top, #1a1f4a, var(--bg));*/
    background: radial-gradient(circle at top, #ebe9f1, #d5d3f2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Card principal */
.auth-card {
    position: relative;
    width: 100%;
    max-width: 980px;
    background: var(--card-bg);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /*overflow: hidden;*/
    box-shadow: 0 40px 100px rgba(0,0,0,.25);
}

.auth-copy {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 980px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
}

.auth-copy a{
    color: inherit;
}

/* Lado marketing */
.auth-info {
    background: var(--primary-soft);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.auth-info img {
    width: 90px;
}

.auth-info h1 {
    font-family: 'Poppins';
    font-size: 2rem;
    color: var(--text);
    line-height: 1.25;
    font-weight: bold;
    text-align: left;
}

.auth-info p {
    font-family: Poppins;
    color: #222;
    font-size: 15px;

}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.benefits span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .95rem;
    color: #374151;
}

.benefits span i{
    font-size: 18px;
    font-weight: 500;
    color: #268200;
}

/* Lado formulário */
.auth-form {
    /*padding: 48px;*/
    padding: 30px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form h2 {
    font-size: 1.7rem;
    color: var(--text);
    margin-bottom: 6px;
}

.auth-form p {
    color: var(--muted);
    margin-bottom: 26px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    font-size: .95rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

/* Botão */
.btn-primary {
    margin-top: 8px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    /*background: var(--accent);*/
    /*color: #3b2a00;*/
    background: linear-gradient(90deg, #c6953d, #9b7124);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.btn-primary:hover {
    background: linear-gradient(270deg, #c6953d, #9b7124);
}

.content_btns_logins{
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-outros-logins {
    width: 100%;
    margin-top: 8px;
    padding: 7px;
    border-radius: 12px;
    border: none;
    background: #fff;
    color: #3b2a00;
    font-weight: 700;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 14px;
}

.btn-outros-logins img{
    width: 18px;
}


.btn-outros-logins:hover{
    background: #f7f7f7;
}

/* Toggle */
.auth-toggle {
    margin-top: 22px;
    font-size: .9rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
}

.auth-toggle a {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.auth-toggle a:hover {
    color: #564f97;
    text-decoration: underline;
}

.divisor {
    display: flex;
    align-items: center; /* Alinha a palavra e as linhas verticalmente */
    text-align: center;
    color: #666; /* Cor do texto */
    margin: 20px 0 5px 0; /* Espaçamento em cima e embaixo */
    font-size: 12px;
}

.divisor::before,
.divisor::after {
    content: "";
    flex: 1; /* Faz as linhas ocuparem todo o espaço disponível */
    border-bottom: 1px solid #ccc; /* Cor e espessura da linha */
}

.divisor::before {
    margin-right: 10px; /* Espaço entre a linha da esquerda e o texto */
}

.divisor::after {
    margin-left: 10px; /* Espaço entre o texto e a linha da direita */
}

.esqueceu_senha{
    font-size: 12px;
    text-align: right;
    margin-bottom: 9px !important;
}
.esqueceu_senha a{
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.esqueceu_senha a:hover {
    color: #564f97;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 860px) {
    .auth-card {
        grid-template-columns: 1fr;
    }

    .auth-info {
        display: none;
    }
}