﻿input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
}

.login-page {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background: linear-gradient(#cccccc86, #cccccc86), url("/img/texture-bg-1.png");
    background-position: center;
    background-repeat: no-repeat;
}

.login-container {
    width: 100%;
    max-width: 412px;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px 24px;
    background:#fff;
    border-radius:12px;
    border: 1px solid #ddd;
}

.logo {
    width: 40px;
    text-align: center;
}

.section-header {
    width: 100%;
    text-align: center;
}

    .section-header h2 {
        font-size: 20px;
        margin:0;
    }

    .section-header p {
        font-size: 14px;
        margin: 0;
        color: #1A1A1A85;
    }

.login-form {
    width: 100%;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 12px
}

.field-row {
    width: 100%;
    margin-bottom: 20px;
}

.lp-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-label {
    font-size: 14px;
    font-weight: 600;
}

.input-group {
    height:40px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* ícone esquerdo */
.icon-col {
    min-width: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-col img{
    width:16px;
    height:16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-control {
    flex: 1;
    border: none;
    outline: none;
}
.login-form button {
    margin-top: 12px;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: none;
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-primary);
}


.forgot-link {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    margin: 0;
    color: #1A1A1A85;
    text-decoration:underline
}




.toggle-password {
    max-width: 36px;
    padding-bottom: 7px;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    font-size: 18px;
    color: #666 !important
}

    .toggle-password:hover {
        color: #000;
    }

.toggle-passwor i {
    color: #666 !important
}