/* logmusica.css - Estilos exclusivos para el Login Terminal Rock */

:root {
    --bg: #000f00;
    --card-bg: #181818;
    --accent: #2ecc71;
    --white: #f0f0f0;
    --orange: #e67e22;
    --red: #ff5252;
}

body.login-body {
    background: radial-gradient(circle, #051005 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI Rounded', sans-serif;
    overflow: hidden;
}

.box-login {
    background: #161616;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    border: 2px solid var(--accent);
    position: relative;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.15), inset 0 0 10px rgba(46, 204, 113, 0.05);
}

.login-header h1 {
    margin: 0;
    font-weight: 800;
    background: linear-gradient(to right, var(--accent), #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2em;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: var(--white);
    font-size: 0.85em;
    margin-bottom: 8px;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rock-input-login {
    width: 100%;
    height: 50px;
    background: #000;
    color: var(--accent);
    border: 2px solid #333;
    padding: 0 15px;
    font-family: monospace;
    box-sizing: border-box;
    font-size: 1.1em;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.rock-input-login:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.btn-login {
    width: 100%;
    height: 60px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 0 #1e8449;
    font-family: inherit;
}

.btn-login:hover {
    background: #58d68d;
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-2px);
}

.btn-login:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #1e8449;
}

.error-msg {
    color: var(--red);
    border: 1px solid var(--red);
    padding: 10px;
    background: rgba(255, 0, 0, 0.1);
    margin-bottom: 20px;
    font-family: monospace;
    font-size: 0.85em;
}

.decor { position: absolute; font-size: 1.5rem; opacity: 0.7; }
.fuego { top: -35px; left: 50%; transform: translateX(-50%); }
.nota-1 { bottom: 15px; right: 15px; color: var(--accent); }
.nota-2 { bottom: 15px; left: 15px; color: var(--orange); transform: rotate(-15deg); }

