* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background-color: #e5e5e5;
}

header {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 100px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 450px;
    max-width: 95%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-container h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #1877f2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #165dc1;
}

.forgot {
    display: block;
    margin-top: 15px;
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
}

.forgot:hover {
    text-decoration: underline;
}

#mensagem-erro {
    font-size: 14px;
    text-align: center;
}
