/* General Style */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

/* Two-Column Layout */
.two-column {
    display: flex;
    height: 100vh;
}

/* Left Side */
.left-column {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side */
.right-column {
    width: 40%;
    background-color: white;
    color: black;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Logo in the Top Right Corner */
.right-column .logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

.right-column .logo img {
    height: 50px;
}

/* Slogan */
.right-column h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.right-column p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
}

/* Continue Button */
.continue-button {
    margin-top: 30px;
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.continue-button:hover {
    background-color: #333;
}
