@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
    background-color: #f2f2f2;
    color: rgba(255, 255, 255, 0.87);
    font-family:
        "Poppins",
        system-ui,
        -apple-system,
        sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    overflow: hidden;
}

.container {
    background-color: #f1f1f1;
    display: flex;
    margin: 0 auto;
    max-width: 1730px;
    min-height: 100vh;
    width: 100%;
}

.left-pane {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: 40%;
}

.left-pane .bg-image {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: left top;
    position: absolute;
    top: 0;
    width: 110%;
    z-index: 0;
}

.left-pane .logo {
    background: #ffffff;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    height: fit-content;
    margin-top: 50px;
    padding: 20px 35px;
    position: relative;
    width: fit-content;
    z-index: 1;
}

.left-pane .content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    left: 50%;
    padding: 0 24px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.left-pane .content h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.left-pane .content {
    font-weight: 300;
    text-align: center;
}

.right-pane {
    align-items: center;
    color: #404444;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: 60%;
}

.right-pane .content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right-pane .content.paragraph {
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    max-width: 70%;
    padding: 32px;
    text-align: center;
    text-wrap: balance;
}

.link {
    color: blue;
    text-decoration: none;
    text-underline-offset: 3px;
}

.link:hover {
    text-decoration: underline;
}

.cta-btn {
    background-color: #f26f25;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    shadow: 0 4px 6px rgba(0, 0, 230, 0.5);
}

.cta-btn:hover {
    background-color: #f26f25e9;
    transition: background-color 0.3s ease-in-out;
}

.right-pane .copyright {
    bottom: 10px;
    color: #999999;
    position: absolute;
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }

    .left-pane {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 25vh;
        width: 100%;
    }

    .left-pane .logo {
        margin-top: 0;
    }

    .left-pane .bg-image {
        width: 110%;
    }

    .left-pane .content {
        display: none;
    }

    .right-pane {
        min-height: 70vh;
        width: 100%;
    }

    .right-pane .content.paragraph {
        max-width: 100%;
    }
}
