body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}
.container {
    display: flex;
    width: 800px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
}
.left {
    width: 50%;
    background: #fef5c4;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left h2 {
    color: #d18f00;
}
.right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.btn-login {
    background-color: white;
    border: 1px solid #6c757d;
    color: #6c757d;
}
.btn-signup {
    background-color: #4a69bd;
    color: white;
}
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}