/* body {
    background: rgba(48, 17, 131, 1.0);
    background: linear-gradient(45deg, rgba(48, 17, 131, 1.0), rgba(99, 134, 199, 1.0));
} */

.page_all {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 90vh;
    width: 90%;
    margin: 0 5%;
    margin-block: 5vh;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.page_swiper {
    overflow-x: hidden;
}

.forms-all {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
    background-color: #fff;
}

.forms-title {
    margin-bottom: 30px;
    color: #6158e5;
}

.forms {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 5%;
    margin-bottom: 30px;
}

.forms input {
    height: 50px;
    padding-left: 3%;
    border-radius: 10px;
    border: 1px solid #6158e5;
}

.error-message {
    background-color: lightpink;
    padding-block: 20px;
    padding: 10px 40px;
    color: red;
    margin-bottom: 20px;
}

.forms input:focus {
    outline: none;
}

.forms button {
    height: 50px;
    border: none;
    background-color: #6158e5;
    color: #fff;
    border-radius: 10px;
}

.forms button:focus {
    outline: none;
}

.error-message {
    opacity: 1;
    transition: opacity 3s ease;
}

.error-message.hide {
    opacity: 0;
}

.swiper_btn {
    position: absolute;
    bottom: 50px;
    width: 30%;
    right: 0;
    background-color: red !important;
}

.s_btn {
    background-color: #6158e5;
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    height: 60px;
    width: 60px;
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}


@media only screen and (max-width: 1110px) {
    .page_all{
        display: flex;
        flex-direction: column;
    }
}