/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: #1e1e1e;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4),
                inset 0px 2px 4px rgba(255, 255, 255, 0.05);
    width: 350px;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: left;
    color: #b3b3b3;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: #2b2b2b;
    color: #fff;
    font-size: 1rem;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    box-shadow: 0px 0px 5px #0345E4, inset 0px 2px 5px rgba(0, 0, 0, 0.5);
}

button[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: #0345E4;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
}

button[type="submit"]:hover {
    background: #0056b3;
}

p.error {
    display: block;
    color: #ff4d4d;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Links (para esqueci minha senha ou signup) */
a {
    color: #0345E4;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #0056b3;
}
