.main {
    height: 100vh;
    display: flex;
    background: #e6e6e6;
}

.left, .right {
    display: flex;
}

.left {
    width: 60vw;
    background: #ff6900;
    background: transparent linear-gradient(180deg, #FF890B 0%, #FF5000 100%) 0% 0% no-repeat padding-box;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    position: relative;
}

/* .left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/image.png');
    background-position: center center;
    background-size: cover;
} */

.right {
    width: 40vw;
    background: #e6e6e6;
}

.btn {
    border-radius: 0;
    font-weight: bold;
}

.button-white {
    background-color: #FFF;
    color: #ff6900;
}

.button-white:hover {
    background-color: #f2f2f2;
    color: #ff6900;
}

.button-primary {
    background-color: #ff6900;
    color: #FFF;
}

.button-primary:hover {
    background-color: #cc5500;
    color: #FFF;
}

.left .container {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.right .container {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}