@font-face {
    font-family: 'Inter';
    src: local('Inter'), local('Inter Regular'), local('Inter-VariableFont_opsz,wght'), local('Inter Variable Font');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter Bold'), local('Inter-VariableFont_opsz,wght');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter Italic'), local('Inter-Italic-VariableFont_opsz,wght'), local('Inter Italic Variable Font');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter Bold Italic'), local('Inter-Italic-VariableFont_opsz,wght');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Changa';
    src: local('Changa'), local('Changa Regular'), local('Changa-VariableFont_wght'), local('Changa Variable Font');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Changa';
    src: local('Changa Medium'), local('Changa-VariableFont_wght');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Changa';
    src: local('Changa Semibold'), local('Changa SemiBold'), local('Changa-VariableFont_wght');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Changa';
    src: local('Changa Bold'), local('Changa-VariableFont_wght');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: local('Myriad Pro'), local('Myriad Pro Regular'), local('MyriadPro-Regular');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --yellow: #402548;
    --dark: #1e1e1e;
    --gray: #727272;
    --soft-gray: #f7f7f7;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "Changa", "Segoe UI", system-ui, sans-serif;
    color: var(--dark);
    background: var(--soft-gray);
    overflow-x: hidden;
    overflow-y: hidden;
}

html {
    overflow-x: hidden;
    overflow-y: hidden;
}

.container-login {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.painel-imagem {
    position: relative;
    width: 500px;
    min-height: 100vh;
    flex: 0 0 500px;
    background: url("../imagens/login-imagem.jpg") center/cover no-repeat;
    overflow: hidden;
}

.filtro-imagem {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.conteudo-imagem {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    color: var(--white);
    text-align: center;
    background: url("imagens/Overlay_login.png") center/cover no-repeat;
}

.marca-franquia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: 100%;
    padding-top: 289px;
    padding-left: 105px;
    padding-right: 106px;
    box-sizing: border-box;
}

.marca-franquia img {
    width: auto;
    height: auto;
    max-width: 350px;
    max-height: 280px;
    object-fit: contain;
    display: block;
}

.subtitulo-franquia {
    margin-top: 67px;
    margin-bottom: 361px;
    padding-left: 139px;
    padding-right: 139px;
    font-family: "Futura", "Futura PT", "Futura Std", "Segoe UI", system-ui, sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--white);
    line-height: 1.1;
    text-align: center;
    box-sizing: border-box;
}

.painel-formulario {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    padding-left: 261px;
    padding-right: 741px;
    position: relative;
    background-color: white;
}

.caixa-formulario {
    width: 418px;
    height: 430px;
    padding: 0;
    margin-top: 235px;
    box-sizing: border-box;
}

.caixa-formulario h1 {
    width: 370px;
    margin: 23px 0 0 24px;
    font-size: 24px;
    font-family: "Changa", "Segoe UI", system-ui, sans-serif;
    font-weight: 500;
    color: #931b4e;
}

.caixa-formulario p {
    width: 320px;
    color: var(--gray);
    margin: 10px 0 0 24px;
    text-align: left;
    transform: translateX(0);
    line-height: 1.5;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.caixa-formulario .texto-largo {
    width: 370px;
    text-align: left;
    transform: none;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100% - 48px);
}

.campo-input {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 370px;
    height: 48px;
    padding: 15px 1.1rem 0 12px;
    border: 1.5px solid #e2e2e2;
    border-radius: 12px;
    background: var(--white);
    cursor: text;
    box-sizing: border-box;
}

.campo-input:focus-within {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(64, 37, 72, 0.15);
}

.icone {
    display: inline-flex;
    width: 20px;
    height: 20px;
    min-width: 20px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 0;
}

.icone svg {
    width: 20px;
    height: 20px;
}

.icone img {
    width: auto;
    height: 20px;
    max-width: 20px;
    display: block;
    object-fit: contain;
}

.campo-input input {
    border: none;
    font-size: 0.95rem;
    flex: 1;
    height: auto;
    outline: none;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    background: transparent;
    min-width: 0;
    align-self: flex-start;
    padding-top: 0;
    line-height: 20px;
}

.campo-input input::placeholder {
    color: var(--gray);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
}

.icone-olho {
    display: inline-flex;
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icone-olho svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
}

.icone-olho .olho-aberto {
    display: block;
}

.icone-olho .olho-fechado {
    display: none;
}

.icone-olho:hover svg path,
.icone-olho:hover svg circle,
.icone-olho:hover svg line {
    stroke: var(--yellow);
}

.indicador-senha {
    width: 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--gray);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    margin-top: 1px;
}

.imagem-senha-segura {
    width: 100%;
    height: auto;
    display: block;
}

.textos-indicador {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 7px;
}

.texto-indicador {
    flex-shrink: 0;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
}

.barra-forca {
    flex: 1;
    height: 6px;
    background: #e2e2e2;
    border-radius: 3px;
    overflow: hidden;
}

.barra-progresso {
    height: 100%;
    width: 0%;
    background: #e2e2e2;
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.forca-senha {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    color: var(--gray);
    flex-shrink: 0;
}

.mensagem-erro {
    width: 370px;
    color: #d32f2f;
    font-size: 0.85rem;
    text-align: left;
    margin-top: -0.5rem;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
}

button[type="submit"] {
    margin-top: 9px;
    width: 370px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #931b4e;
    font-family: "Changa", "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(64, 37, 72, 0.4);
}

.link-recuperar {
    display: block;
    margin-top: 15px;
    font-family: "Myriad Pro", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    color: #f4428e;
    text-align: center;
    text-decoration: underline;
}