/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #dee8e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
header {
    width: 100%;
    padding: 10px;
    text-align: left;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: lowercase;
    margin-left: 10px;
    transform: rotate(-5deg);
    position: absolute;
    top: 5px;
    left: 10px;
}

/* Login Container */
.login-container {
    background: #fafffc;
    padding: 25px;
    border: 3px solid #357e47;
    box-shadow: 3px 3px #a7c8af;
    width: 325px;
    text-align: center;
    margin-top: 100px;
}

.login-container h2 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
}

input {
    width: 90%;
    padding: 8px;
    margin-bottom: 15px;
    border: 2px solid black;
    background-color: #fff;
    font-family: Arial;
    font-size: 14px;
}

button {
    background: black;
    color: white;
    padding: 8px;
    border: 2px solid black;
     font-family: Arial;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

button:hover {
    background: white;
    color: black;
}

/* Signup Link */
.signup-link {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.signup-link p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.signup-link a {
    color: #357e47;
    text-decoration: none;
    font-weight: bold;
}

.signup-link a:hover {
    text-decoration: underline;
}