@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% 0%, #1f1f1f 0%, #0a0a0a 70%);
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
    font-weight: 900;
}

.container {
    background: #121212;
    border: 1px solid #222;
    border-top: 5px solid #d32f2f; /* Vermelho estilo 'Rec' de estúdio */
    border-radius: 6px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0, 0.9);
}

.logo-text {
    text-align: center;
    margin-bottom: 30px;
}
.logo-text h2 {
    font-size: 28px;
    color: #fff;
    letter-spacing: 2px;
}
.logo-text h2 span { color: #d32f2f; }

.input-group { margin-bottom: 20px; }
.input-group label { 
    display: block; margin-bottom: 8px; color: #888; 
    font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; 
}
.input-group input {
    width: 100%; padding: 14px;
    background: #000; border: 1px solid #333;
    color: #fff; border-radius: 4px; font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
}
.input-group input:focus { 
    outline: none; 
    border-color: #d32f2f; 
    box-shadow: 0 0 12px rgba(211, 47, 47, 0.3); 
}

.btn {
    width: 100%; padding: 15px;
    background: #d32f2f; border: 2px solid #d32f2f;
    color: #fff; font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 16px; letter-spacing: 1px; cursor: pointer;
    border-radius: 4px; transition: all 0.3s ease;
    text-decoration: none; display: inline-block; text-align: center;
    margin-bottom: 15px; text-transform: uppercase;
}
.btn:hover { background: #b71c1c; border-color: #b71c1c; }

.btn-secondary {
    background: transparent; border: 2px solid #444; color: #bbb;
}
.btn-secondary:hover { background: #555; border-color: #555; color: #fff; }

.error { 
    color: #ff5252; font-size: 14px; margin-bottom: 20px; 
    text-align: center; font-weight: bold; background: rgba(255,82,82,0.1); 
    padding: 10px; border-radius: 4px; 
}

.link-rodape {
    display: block; text-align: center; margin-top: 15px; color: #777; 
    text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s;
}
.link-rodape:hover { color: #d32f2f; }