/*========== CADASTRO START ==========*/
#calc {
    background-color: var(--bg-color-two);
    position: relative;
}

.calc-box {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 0;
    overflow: hidden;
}

.calc-box-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-two);
    z-index: 2;
}

.calc-box-left p {
    font-size: var(--f1-font-size);
}

.calc-box-left-calc {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.divAltura,
.divPeso,
.divCalc {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.calc-box-left-calc label {
    font-size: var(--f1-font-size);
    color: var(--color-one);
}

.calc-box-left-calc,
input,
button {
    outline: none;
    padding: 5px;
    font-size: var(--f1-font-size);
    border: solid 2px transparent;
}

.calc-box-left-calc input:focus {
    border: solid 2px var(--color-one);
    box-shadow: 0px 0px 10px 1.5px var(--color-one);
}

.calc-box-left-calc button {
    margin-top: 20px;
    background-color: var(--color-one);
    border: solid 3px transparent;
    cursor: pointer;
    transition: 0.3s;
}

.calc-box-left-calc button:hover {
    box-shadow: 0px 0px 8px 2px var(--color-one);
}

.calc-box-left-calc button:active {
    color: var(--color-one);
    background-color: var(--bg-color);
    border: solid 3px var(--color-one);
    transition: 0.1s;
}

.calc-box-right {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 2;
}

.calc-box-right img {
    display: block;
    height: 100%;
    width: 70%;
    object-fit: cover;
}

.calc-box-color {
    position: absolute;
    height: calc(100% - 10vh);
    width: 50%;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: var(--color-one);
    clip-path: polygon(61% 0, 100% 52%, 53% 100%, 0 60%);
}
/*========== CADASTRO END ==========*/

/*========== CADASTRO RESPONSIVE ==========*/

@media (max-width: 950px) {
    .calc-box {
        flex-direction: column;
    }

    .calc-box-left {
        width: 100%;
    }
    .calc-box-right {
        width: 100%;
    }

    .calc-box-right img {
        width: 70%;
    }

    .divAltura,
    .divPeso,
    .divCalc {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .calc-box-color {
        height: calc(50% - 15vh);
        width: 100%;
    }

    .calc-box-right {
        justify-content: center;
    }
}
