body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: black;
}

.login-container {
    max-width: 360px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 10px;
    background: #181A20;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
}

.fi{

}
.f0{
    background: #0F1115;
}

.logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

form h2 {
    margin-bottom: 20px;
    color: #ffffff;

}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
    /* fundo escuro */
    color: #ffffff;           /* texto digitado */
}



#usuario::placeholder,
#senha::placeholder {
    color: #cccccc; /* branco suave */
}

input:focus {
    outline: none;
    border-color: #2e7dff;
    box-shadow: 0 0 4px rgba(46,125,255,0.4);
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #2e7dff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #1e5fd8;
}

.links {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.links a {
    font-size: 14px;
    color: #2e7dff;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.login-msg {
    margin-top: 12px;
    padding: 10px;
    border-radius: 6px;
    background: #ffe5e5;
    color: #b00020;
    font-size: 14px;
    display: none;
}

@media (max-width: 420px) {
    .login-container {
        margin: 40px 15px;
        padding: 20px;
    }
}
