body {
    display: flex;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    width: 100%;
}

.image-container {
    flex: 0 0 30%;
    height: 100%;
    background-color: #000;
    background-image: url('https://assets.amenitiz.io/assets/batcave/batcave-be7552dff42dca02d37d4787979e68f718d66aa15dd239fabde0fdc0c93eb96a.jpg');
    background-size: cover;
    background-position: center;
}

.login-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.google-signin {
    padding: 10px 20px;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.google-signin:hover {
    background-color: #357ae8;
}
