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

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

.logo-section {
    flex: 1;
    background: #343a40;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-section img {
    max-width: 100%;
}

.login-form {
    flex: 1;
    padding: 30px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #343a40;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}
