@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;
    padding: 20px;
}

header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #BC6C25;
    margin-left: 50px;
}
hr {
    margin: 20px;
    color: #283618;
}
header .logo {
    text-decoration: none;
    color: inherit;
}

section {
    width: 40%;
    margin: 20px auto;
    text-align: center;
    background-color: #FEFAE0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    font-family: 'Arial', sans-serif;
}

h3 {
    color: #333;
    font-family: 'Arial', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #BC6C25;
    color: #FEFAE0;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

p {
    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;
}