@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #CCD3E2;
}

.container {
    display: flex;
    width: 100%;
    height:100vh;
    background: white;
}

.left {
    width: 50%;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #CCD3E2;
    padding-left: 5em;
    padding-bottom: 5em;
    text-align: left;
    line-height: 2em;
}

.right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CCD3E2;
}

.logo {
    width: 120px;
    margin-bottom: 4em;
}

h1 {
    font-size: 2em;
    color: #35476f;
    font-weight: 600;
    padding-bottom: 24px;
}

p {
    font-size: 1.2em;
    color: #151c2c;
    margin-bottom: 24px;
}

.button-container {
    display: flex;
    gap: 15px;
}

.button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background: #77ae19;
    color: #35476f;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.primary {
    background: #77ae19;
    color: #35476f;
    border: none;
}

.primary:hover {
    background: #35476f;
    color: white;
}

.secondary {
    background: transparent;
    color: #77ae19;
    border: 2px solid #77ae19;
}

.secondary:hover {
    border-color: #35476f;
    color: #35476f;
}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }
    
    .left, .right {
        width: 100%;
        height: auto;
    }
    
    .full-image {
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .button-container {
        flex-direction: column; 
        gap: 10px; 
    }

    .button {
        width: 100%; 
        text-align: center;
        font-size: 1em;
        padding: 0.6em 1em;
    }
}