body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #4a5759; /* Dark Green */
    background-color: #edafb8; /* Light Pink */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signin-container {
    background-color: #f7e1d7; /* Light Beige */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
}

.signin-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #4a5759; /* Dark Green */
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1em;
    margin-bottom: 5px;
    color: #4a5759; /* Dark Green */
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dedbd2; /* Muted Grey */
    border-radius: 5px;
    font-size: 1em;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.register-link {
    color: #edafb8; /* Light Pink */
    text-decoration: none;
    font-size: 0.9em;
}

.register-link:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: #4a5759; /* Dark Green */
    color: #f7e1d7; /* Light Beige */
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.login-btn:hover {
    background-color: #b0c4b1; /* Muted Green */
    color: #4a5759; /* Dark Green */
}