﻿.hidden--visually {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.modalPage{
    display:none;
}

.fade-animation {
    animation: opac 2s;
}

@keyframes opac {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.auth-wapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

    .auth-wapper .auth-content {
        width: 520px;
        height: 526px;
        margin: 70px auto
    }

        .auth-wapper .auth-content .auth-info {
            margin: 40px;
        }
            .auth-wapper .auth-content .auth-info .form-floating input:focus{
                outline:none !important;
            }
            .auth-wapper .auth-content .auth-info h1 {
                font-style: normal;
                font-weight: 600;
                font-size: 40px;
                line-height: 56px;
                display: flex;
                align-items: center;
            }

            .auth-wapper .auth-content .auth-info p {
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 25px;
                color: #615F5C;
            }

         

               

            .auth-wapper .auth-content .auth-info .btn-checkbox {
                margin: 55px 0 28px 0;
                display:flex;
                align-items:center;
            }

                .auth-wapper .auth-content .auth-info .btn-checkbox span {
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 25px;
                    color: #272624;
                }
                .auth-wapper .auth-content .auth-info .btn-checkbox input[type="checkbox"] {
                    background-color: #272624 !important;
                }

            .auth-wapper .auth-content .auth-info .btn-submit {
                width: 440px;
                height: 48px;
                border-radius: 2px;
                margin-bottom: 40px;
                color: #ffffff;
                cursor: pointer
            }
