body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    width: 800px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.login-left {
    background-color: #343a40;
    color: white;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hotel-logo {
    width: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.login-left h1 {
    font-size: 24px;
    text-align: center;
}

.login-right {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-right h2 {
    margin-bottom: 20px;
}

.login-right form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-right input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.login-right button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-right button:hover {
    background-color: #0056b3;
}

.form-links {
    text-align: right;
    margin-bottom: 10px;
}

.form-links a {
    color: #007bff;
    text-decoration: none;
}

.form-links a:hover {
    text-decoration: underline;
}

.login-right p {
    margin-top: 20px;
    font-size: 14px;
}

.login-right a {
    color: #007bff;
    text-decoration: none;
}

.login-right a:hover {
    text-decoration: underline;
}