/* Todo o estilo só funciona quando o body tem a classe .login */
body.login {
    background: linear-gradient(135deg, #1f1f1f 0%, #2e2e2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
}

/* Logo */
body.login h1 a {
    background-image: url('https://tiamanhwa.com/wp-content/uploads/2025/10/awadad-Copia.jpg') !important;
    background-size: contain !important;
    width: 180px;
    height: 180px;
    border-radius: 12px;
}

/* Container do formulário */
body.login form {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 0, 0, 0.35);
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

/* Labels */
body.login label {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
}

/* Inputs mais modernos */
body.login form input[type="text"],
body.login form input[type="password"] {
    background-color: #2d2d2d !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
    transition: all .25s ease;
}

body.login form input[type="text"]:focus,
body.login form input[type="password"]:focus {
    border-color: #ff2b2b !important;
    box-shadow: 0 0 0 2px rgba(255, 50, 50, 0.35) !important;
    background-color: #353535 !important;
}

/* Botão moderno */
body .login .wp-core-ui .button-primary {
    background: #cc0000 !important;
    border-color: #990000 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .25s ease !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.25);
}

body.login .wp-core-ui .button-primary:hover {
    background: #ff0000 !important;
    border-color: #d80000 !important;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}

/* Links */
body.login #nav a,
body.login #backtoblog a {
    color: #ff6b6b !important;
    font-size: 14px;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: #ffffff !important;
}

/* Mensagens */
body.login .message,
body.login .notice {
    background: rgba(255, 0, 0, 0.20) !important;
    color: #ffffff !important;
    border-left: 4px solid #ff0000 !important;
}

/* Checkbox */
body.login form .forgetmenot input[type=checkbox] {
    accent-color: #ff0000 !important;
    width: 16px;
    height: 16px;
}

body.login form .forgetmenot label {
    color: #fff !important;
    font-size: 14px;
}
