body {
    font-family: Arial, sans-serif;
    background-color: #1b1b1b;
    color: #c94d53;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0;
    margin: 0;
}

.login-container {
    background-color: #927f7a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    margin: 50px 0 200px;
}

h1 {
    margin-bottom: 20px;
    color: #37cf88;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #fff;
    font-size: 14px;
}

input,
textarea {
    width: 96%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #4a3b37;
    color: #fff;
}

textarea {
    resize: vertical;
}

.description-container,
.contact-container {
    background-color: #7a6661;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 50px auto 150px;
    color: #ddd;
}

.description-container {
    width: 80%;
    max-width: 800px;
}

.description-container h1,
.contact-container h1,
.contact-container h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.description-container p,
.contact-container p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    background-color: #3a2e2b;
}

.contact-container a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-container a:hover {
    color: #ff6600;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}


.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #ffcc00;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}

.footer-links a.active-footer {
    border: 2px solid red;
    padding: 8px;
    border-radius: 10px;
    font-size: 18px;
    display: inline-block;
    width: auto;
}

footer {
    width: 100%;
    background-color: #817778;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
}

.error-message {
    margin-top: 20px;
    background: #ffe5e5;
    color: #b10000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 1em;
}

.success-message {
    background: #e5ffe5;
    color: #006b00;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 1em;
}