.forns {
    padding: 4rem 0 7rem;
    background: url(../../assets/img/archfornbg.svg) no-repeat top center;
}

.forns .row {
    gap: 36px 0;
}

.forns .row>*:has(.title),
.forns .row>*:has(.form) {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.forns .row>*:has(.form) {
    justify-content: end;
}

.forns .title {
    color: var(--black);
    font-family: var(--raj);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

.forns .form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 280px;
}

.forns .form svg {
    position: absolute;
    right: 16px;
}

.forns .form .ipts {
    width: 100%;
    height: 45px;
    color: var(--title);
    font-family: var(--raj);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    border: none;
    border-radius: 0;
    padding: 0 2rem 0 1rem;
    background-color: #F6F6F6;
}

.forns .form .ipts:focus-visible {
    outline: none;
}

.forns .form .ipts::placeholder {
    color: var(--text);
}

.forns .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 380px;
    height: 100%;
    padding: 52.7px 45px 25px;
    border: 1px solid var(--line);
    background-color: #F7F7F7;
}

.forns .box .logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 12px;
}

.forns .box .logo img {
    width: auto;
    height: 75px;
    object-fit: contain;
}

.forns .box .prods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-bottom: 2rem;
}

.forns .box .prods>* {
    flex: 1 1 calc(50% - 11px);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    /* background-color: var(--white); */
}

.forns .box .prods>* img {
    width: 82%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.forns .box .dbtn {
    margin: 0 auto;
}