 /* ===============================
   MU SEASON 19 – LOGIN PANEL
   =============================== */

 #login-acess {
     background-color: #5b0000a8;
     border: 1px solid #5b0000;
     box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
     padding: 7px;
     margin-bottom: 10px;
     margin-top: 18px;
 }



 /* Subtexto */
 #login-acess p {
     color: #ffb3b3;
     margin: 0;
     text-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
 }

 /* ===============================
   INPUTS
   =============================== */

 form .input-group {
     display: flex;
     flex-direction: column;
     margin-bottom: 12px;
 }

 form .input-group label {
     color: #ffb3b3;
     font-size: 14px;
     margin-bottom: 4px;
     text-shadow: 0 0 4px rgba(255, 0, 0, 0.4);
 }

 form .input-group input {
     background-color: rgba(20, 0, 0, 0.9);
     border: 1px solid rgba(180, 0, 0, 0.7);
     color: #fff;
     padding: 6px 10px;
     outline: none;
     transition: all 0.2s ease;
 }

 form .input-group input::placeholder {
     color: rgba(255, 150, 150, 0.6);
 }

 /* Focus MU glow */
 form .input-group input:focus {
     border-color: #ff4d4d;
     box-shadow: 0 0 12px rgba(255, 0, 0, 0.85);
     background-color: rgba(30, 0, 0, 0.95);
 }

 /* ===============================
   BOTÃO
   =============================== */

 #entrartxt {
     background: linear-gradient(180deg,
             #b30000,
             #5c0000);
     border: 1px solid #ff4d4d;
     color: #fff;
     font-weight: bold;
     text-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
     cursor: pointer;
     transition: all 0.2s ease;
 }

 #entrartxt:hover {
     background: linear-gradient(180deg,
             #ff1a1a,
             #800000);
     box-shadow: 0 0 18px rgba(255, 0, 0, 0.9);
 }

 /* ===============================
   LINKS
   =============================== */

 a {
     color: #ffb3b3;
     text-decoration: none;
 }

 a:hover {
     color: #ff4d4d;
     text-shadow: 0 0 6px rgba(255, 0, 0, 0.7);
 }

 /* Divider */
 hr {
     border-color: rgba(180, 0, 0, 0.5);
 }

 