﻿/* ============================= */
/* RESET */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    
}

/* ============================= */
/* FUNDO COM TEXTURA SUAVE */
/* ============================= */

.login-wrapper {
    padding: 105px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, rgba(255,115,0,0.05) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,115,0,0.04) 0%, transparent 40%), linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

/* ============================= */
/* CARD */
/* ============================= */

.login-card {
    width: 420px;
    background: #ffffff;
    padding: 40px 45px 60px 45px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.07);
    position: relative;
}

/* ============================= */
/* BADGE NEON */
/* ============================= */

.badge-neon {
    position: absolute;
    top: -14px;
    right: 40px;
    background: #ff5c00;
    color: #fff;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 18px rgba(255,92,0,0.7);
}

/* ============================= */
/* LOGO */
/* ============================= */

.logoLogin {
    width: 100%;
    height: 45px;
    background: url(../images/logoErpSuiteHorizontal.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 35px;
}

/* ============================= */
/* HEADER */
/* ============================= */

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

    .login-header h1 {
        font-size: 22px;
        color: #111;
        margin-bottom: 8px;
    }

    .login-header p {
        font-size: 14px;
        color: #777;
    }

/* ============================= */
/* INPUTS */
/* ============================= */

.input-group {
    margin-bottom: 15px;
}

    .input-group label {
        font-size: 13px;
        color: #555;
        display: block;
        margin-bottom: 6px;
    }

    .input-group input {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: 1px solid #e5e5e5;
        font-size: 14px;
        transition: all .2s ease;
        background: #fafafa;
    }

        .input-group input:focus {
            border-color: #ff5c00;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(255,92,0,0.12);
            outline: none;
        }

/* AUTOFILL FIX */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: #333;
}

/* ============================= */
/* OPÇÕES */
/* ============================= */

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 25px;
}

    .form-options a {
        color: #ff5c00;
        text-decoration: none;
        font-weight: 500;
    }

.checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

/* ============================= */
/* BOTÃO PRINCIPAL */
/* ============================= */

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #ff5c00, #ff7a00);
    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(255,92,0,0.35);
    }

/* ============================= */
/* DIVIDER */
/* ============================= */

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

    .divider::before,
    .divider::after {
        display: none;
        content: "";
        height: 1px;
        width: 40%;
        background: #e5e5e5;
        position: absolute;
        top: 50%;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        font-size: 12px;
        color: #999;
    }

/* ============================= */
/* BOTÃO OUTLINE */
/* ============================= */

.btn-outline {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #ff5c00;
    border-radius: 14px;
    color: #ff5c00;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

    .btn-outline:hover {
        background: #fff3ec;
    }

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 480px) {
    .login-card {
        width: 92%;
        padding: 40px 25px;
    }
}
@media (max-width: 768px) {
    .login-wrapper {
        padding: 120px 20px 60px;
    }
}
