/* RESET BÁSICO */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background:#f2f2f2;
}

/* CONTAINER CENTRAL */
.container-login100{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.wrap-login100{
    width:390px;
    background:#fff;
    border-radius:12px;
    padding:60px 40px 40px 40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* LOGO */
.login-logo{
    text-align:center;
    margin-bottom:30px;
}

.login-logo img{
    width:160px;
    height:auto;
    display:block;
    margin:0 auto;
}

/* INPUTS */
.wrap-input100{
    margin-bottom:25px;
    border-bottom:2px solid #ddd;
}

.input100{
    width:100%;
    height:45px;
    border:none;
    outline:none;
    font-size:15px;
    padding:0 5px;
    background:transparent;
}

.btn-rm-login{
    width: 100%;
    height: 48px;
    background: #f1b000;
    border: 1px solid #c99700;
    border-radius: 8px;
    font-weight: 600;
    color: #222;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-rm-login:hover{
    background: #d99a00;
}

/* BOTÃO REALIZAR PEDIDO - PADRÃO RM */

.btn-success {
    background-color: #f4b400 !important; /* amarelo RM */
    border: none !important;
    color: #000 !important;
    font-weight: bold;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-success:hover {
    background-color: #d89c00 !important;
    transform: scale(1.03);
}

/* BOTÃO ADICIONAR PRODUTO - PADRÃO RM DEFINITIVO */

button.btn.btn-primary {
    background-color: #000 !important;
    border: none !important;
    color: #f4b400 !important;
    font-weight: bold;
    height: 44px;
    border-radius: 8px;
    font-size: 15px;
}

button.btn.btn-primary:hover {
    background-color: #222 !important;
    color: #f4b400 !important;
    transform: scale(1.03);
}

/* ===== HAMBURGER MOBILE RM ===== */

.rm-toggle{
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px){

    .rm-toggle{
        display: block;
    }

    .rm-menu{
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        z-index: 9999;
    }

    .rm-menu.open{
        display: flex;
    }

    .rm-menu li{
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    .rm-dropdown-menu{
        position: relative;
        background: #222;
        display: none;
        padding-left: 15px;
    }

    .rm-dropdown.open .rm-dropdown-menu{
        display: block;
    }

    .rm-sair{
        display: none;
    }
}



/* RESPONSIVO */
@media(max-width:576px){
    .wrap-login100{
        width:95%;
        padding:40px 20px;
    }
}
