.header-logo-title {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}
.header-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
body {
	background-color: #a5794b;
	color: #fff8f0;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

header, footer {
	background-color: #6B3F13;
	text-align: center;
	padding: 1em 0;
}

main {
	max-width: 700px;
	margin: 2em auto;
	background: rgba(255,255,255,0.07);
	border-radius: 10px;
	padding: 2em;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-title {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
}


h2 {
	color: #fff;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

form {
	background: #fff8f0;
	color: #6B3F13;
	padding: 1em;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

input[type="text"] {
	width: 90%;
	padding: 0.5em;
	margin-bottom: 1em;
	border: 1px solid #bfa16c;
	border-radius: 4px;
}

.login-form input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.login-form button {
    width: 95%;
    padding: 10px;
    background: #2d7a46;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}

.login-form button:hover {
    background: #226033;
}

.register-link {
    display: block;
    margin-top: 18px;
    color: #2d7a46;
    text-decoration: none;
    font-size: 15px;
}

.register-link:hover {
    text-decoration: underline;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.cadastro-btn {
    padding: 10px 28px;
    background: #bfa16c;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    display: inline-block;
    transition: background 0.2s;
}

.cadastro-btn:hover {
    background: #FFD28F;
    color: #6B3F13
}

/* =================================================================================================================== */
/* footer */
.footer-links {
    text-align: center;
    margin-bottom: 8px;
}

.footer-link {
    color: #FFD28F;
    text-decoration: none;
    font-size: 1.1em;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-thanks {
    text-align: center;
    color: #fff8f0;
    font-size: 1em;
    margin-bottom: 4px;
}
