body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
}
.login-container {
    display: flex;
    width: 80%;
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.login-form {
    flex: 1;
    padding: 40px;
}
.login-form h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}
.login-form p {
    color: #777;
    margin-bottom: 20px;
}
.input-field {
    margin-bottom: 20px;
}
.input-field label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}
.input-field input[type="text"],
.input-field input[type="email"],
.input-field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.remember-forgot a {
    color: #007bff;
    text-decoration: none;
}
.message-error {
    color: red;
    margin-bottom: 20px;
}
.message-success {
    color: green;
    margin-bottom: 20px;
}
.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #f96332;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.login-btn:hover {
    background-color: #e6522c;
}
.login-image {
    flex: 1;
    display: none;
}
.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .login-image {
        display: block;
    }
}
