* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    border: 2px solid #333;
    border-radius: 8px;
    padding: 40px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 180px;
}

h2 {
    color: #5c7bd9;
    margin: 10px 0 30px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #888;
    font-size: 14px;
    margin-top: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid #aaa;
    outline: none;
    font-size: 16px;
}

input:focus {
    border-color: #5c7bd9;
}

button {
    background-color: #2e4575;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 25px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1e2f50;
}

.info {
    margin-top: 15px;
    font-size: 12px;
    color: #000;
}

.info a {
    color: #5c7bd9;
    text-decoration: none;
}

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

.links-uteis {
    margin-top: 20px;
    font-size: 12px;
}

.links-uteis a {
    color: #5c7bd9;
    text-decoration: none;
    margin: 0 5px;
}

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

footer {
    margin-top: 25px;
    font-size: 10px;
    color: #777;
}
