.row {
    min-height: 100vh;
}

.col-6 {
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;

    div {
        text-align: center;
    }
}

.col-6:has(#left-div) {
    background-image: url('../../libs/images/workers.jpg');
    background-size: cover;
}

#left-div {
    height: 100%;
    width: 100%;
    color: white;
    background-color: rgba(146, 152, 106, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;

    div {
        width: 75%;
    }
}

#right-div {
    width: 75%;

    h1 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    form {
        padding-left: 12.5%;
        padding-right: 12.5%;

        input {
            width: 100%;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        label {
            color: darkred;
        }
    }
}

.btn {
    color: white;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#btn-send {
    background-color: blue;
}

#btn-send:hover {
    color: white;
    background-color: mediumblue;
}

#btn-cancel {
    background-color: red;
}

#btn-cancel:hover {
    color: white;
    background-color: crimson;
}