@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background-color: #FEFAE0;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #BC6C25;
    margin-left: 50px;
}
.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #BC6C25;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 15px;
}

.nav-links a:hover {
    color: #DDA15E;
}
hr {
    margin: 20px;
    color: #283618;
}
header .logo {
    text-decoration: none;
    color: inherit;
}
section {
    margin-left: 40%;
    background-color: #FEFAE0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

button {
    background-color: #BC6C25;
    color: #FEFAE0;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #95541C;
}

p {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #BC6C25;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    margin-top: 50px;
    background-color: #283618;
    color: white;
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
}