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

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login_content {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    position: relative;
}

/* ===== LADO ESQUERDO ===== */
#frmLogin {
    position:relative;
    flex: 1;
    min-width: unset;
    max-width: 100%; /* agora o max-width é controlado pelo form pai */
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 200px;
}

.logo-produto-top {
    margin-bottom: 40px;
}

.logo-produto-top .logo-img {
    max-height: 60px;
}

.login-left h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.login-left .subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.footer-left {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.footer-right {
    position: absolute;
    display: flex;
    gap: 30px;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

.field-group {
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.field-group .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.field-group .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field-group .bt-recover {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #2563eb;
    margin-top: 8px;
    text-decoration: none;
}

.field-group .bt-recover:hover {
    text-decoration: underline;
}

.buttons {
    margin-top: 10px;
    margin-bottom: 16px;
}

.buttons .btn-primary {
    width: 100%;
    padding: 14px;
    background: #155DFC;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

    transition: filter 0.3s ease;
}

.buttons .btn-primary:hover {
    filter: brightness(120%);
}

.create-account {
    text-align: center;
    font-size: 13px;
    color: #666;
}

.create-account a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #2563eb;
    padding: 10px 20px;
    border-radius: 10px;
    display: block;
    margin-top: 8px;
    transition: background 0.2s;
}

.create-account a:hover {
    background: #eef4ff;
}

/* ===== LADO DIREITO ===== */
.login-right {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: unset;
    background: linear-gradient(200deg, #0a1628 0%, #0d2137 40%, #2563eb 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    color: #fff;

    border-left: 0px;
    border-bottom: 0px;
    border-radius: 0 0 0 20%;
}

.brand-center {
    margin-bottom: 50px;
}

.brand-center .brand-logo {
    max-height: 120px;
    filter: brightness(0) invert(1);
}

.brand-link-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.brand-link-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.brand-link-box a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.brand-link-box a:hover {
    text-decoration: underline;
}

/* ===== FORM RECUPERAR SENHA ===== */
#frmRecover {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 200px;
}

#frmRecover h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

#frmRecover .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

#frmRecover .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#frmRecover .input-group {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
}


#frmRecover .input-group .form-control {
    margin-bottom: 0;
    border-radius: 8px 0 0 8px;
    flex: 1;
}

#frmRecover .input-group .input-group-addon {
    padding: 12px 18px;
    background: #155DFC;
    color: #fff;
    border: none;
    width: fit-content;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: filter 0.3s ease;

    flex-shrink: 0;
}

#frmRecover .input-group .input-group-addon:hover {
    filter: brightness(120%);
}

#frmRecover em {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}

#frmRecover em i {
    margin-right: 4px;
    color: #2563eb;
}

#frmRecover .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

#frmRecover .buttons .btn-default.submit {
    width: 100%;
    padding: 14px;
    background: #155DFC;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.3s ease;
}



#frmRecover .buttons .btn-default.submit:hover {
    filter: brightness(120%);
}

#frmRecover .buttons .bt-login {
    display: block;
    text-align: center;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #2563eb;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    transition: background 0.2s;
}

#frmRecover .buttons .bt-login:hover {
    background: #eef4ff;
}

#frmRecover .buttons span {
    display: none;
}

    
   @font-face {
    font-family: 'Stranger Things';
    src: url('../sts3/fonts/BenguiatBold.eot');
    src: url('../sts3/fonts/BenguiatBold.eot') format('embedded-opentype'),
        url('../sts3/fonts/BenguiatBold.woff2') format('woff2'),
        url('../sts3/fonts/BenguiatBold.woff') format('woff'),
        url('../sts3/fonts/BenguiatBold.ttf') format('truetype'),
        url('../sts3/fonts/BenguiatBold.svg#BenguiatBold') format('svg');
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .login_content {
        flex-direction: column;
        flex-wrap: nowrap;
        min-height: auto;
    }

    #frmLogin {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 40px 30px;
    }

    #frmRecover {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 40px 30px;
    }

    .login-right {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        min-height: 350px;
        height: auto;
        border-radius: 0;
        padding: 60px 30px 220px;
    }

    .footer-left {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        text-align: center;
        margin-top: 30px;
    }

    .footer-right {
        display: none;
    }
}