body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #cc0000, #4d0000);
}

.container {
    background: white;
    width: 80%;
    margin: auto;
    padding-bottom: 20px;
    border-radius: 8px;
}

header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 4px solid #a10000;
}

.form-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.left {
    width: 40%;
    text-align: center;
    padding: 20px;
}

.left img {
    width: 150px;
}

.left .highlight {
    color: #a10000;
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

.login-text {
    color: #a10000;
    font-weight: bold;
}

.right {
    width: 55%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0 0 10px #aaa;
}

.right h2 {
    text-align: center;
    color: #a10000;
}

.note {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
}

form input {
    width: 95%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #a10000;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    float: right;
    border-radius: 4px;
}

button:hover {
    background-color: #800000;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #333;
}
footer a {
    color: #a10000;
    text-decoration: none;
}
