*{
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #0231c0, #223672);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 350px;
    padding: 2rem;
    text-align: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #223672;
    margin-bottom: 0.5rem;
}

.slogan {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 2rem;
}

form#form{
    display: flex;
    flex-direction: column;
    width: 100%;
}

input, select#cargo {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s;
}


input:focus {
    border-color: #223672;
}

button {
    width: 100%;
    padding: 0.8rem;
    background-color: #223672;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #002183;
}

div#resCadastro{
    display: none;
    justify-content: center;
    margin-top: 10px;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 8px;
}

div#resCadastro.duplicado{
    display: flex;
    background-color: #990000;
    border: 1px solid #999;
}

div#resCadastro.cadastrado{
    display: flex;
    background-color: #009900;
    border: 1px solid #999;
}

.footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #777;
}

.footer a {
    color: #223672;
    text-decoration: none;
}

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

@media (max-width: 400px) {
    .login-container {
        width: 90%;
        padding: 1.5rem;
    }
}