.wrapper {
    font-family: Manrope, arial, serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    animation-name: fadeIn;
    animation-duration: .4s;
    animation-timing-function: linear;
    overflow: hidden;
    z-index: 2;
}

.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    min-width: 430px;
    height: 100%;
    background: #f5f5f5;
}

.sidebar-logo {
    width: 109px;
    height: 30px;
    position: absolute;
    right: 289px;
    top: 48px;
    background: url('assets/images/logo.svg') no-repeat center center;
    background-size: contain;
}

.sidebar-partner-logo {
    width: 100px;
    height: 100px;
    position: absolute;
    right: 32px;
    top: 14px;
    background: no-repeat center center;
    background-size: contain;
}

.sidebar-partner-logo.kind-things {
    top: 23px;
    width: 68px;
    height: 68px;
    background-image: url('assets/images/funds/kind-things.svg') 
}

.sidebar-partner-logo.chumodan {
    background-image: url('assets/images/funds/chumodan.svg') 
}

.sidebar-partner-logo.spasiboshop {
    background-image: url('assets/images/funds/spasiboshop.svg')
}

.form {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    max-width: calc(100% - 430px);
    height: 100%;
    background: #FFF;
    overflow-x: hidden;
}

.content {
    margin: 190px 32px 32px 137px;
    max-width: 800px;

    /*max-height: calc(100% - 200px);*/
    /*overflow-y: scroll;*/
    /*overflow-x: hidden;*/
}

.info {
    position: absolute;
    width: 316px;
    top: 190px;
    right: 82px;
}

.sidebar-content {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.sidebar-content > b:after {
    content: ':';    
}

.sidebar-content > b {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 22px;
    padding: 10px 0;
    display: inline-block;
}

.sidebar-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
    margin: 0 0 16px;
}

.form-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 54px;
}

.form-description {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.form-wrapper {
    max-width: 720px;
}

.form-control {
    margin: 32px 0;
}

.form-label {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 22px; 
}

.form-input {
    border-radius: 12px;
    background: #F2F1F0;
    border: none;
    padding: 13px 16px;
}

.form-input {
    width: 100%;
    margin-top: 12px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: .3s ease;
}

.form-input:focus,
.form-input:focus-visible {
    outline: #00aaff auto 1px;
}

.form-input[data-error='true'] {
    outline: #ff6162 auto 1px!important;
}

.form-input[data-error='true']::-webkit-input-placeholder {
    transition: .2s ease;
    color: #ff6162!important;
}

.form-control:has([data-error='true']) > .form-label:after {
    content: '*';
    color: #ff6162;
    animation-name: fadeIn;
    animation-duration: .4s;
    animation-timing-function: linear;
}

.form-button {
    background: #141414;
    color: #FFF;
    border-radius: 16px;
    border: none;
    padding: 15px 18px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: .2s ease;
    cursor: pointer;
}

.form-button:hover {
    background: #242424;
}

.close-link {
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
    outline : none;
    transition: .2s ease;
}


.close-link:hover {
    opacity: .7;
}

.close-link:active {
    opacity: 0;
    transform: scale(1.1);
}

.close-icon {
    border : 0;
    outline : none;
}

.button-wrapper {
     margin: 40px 0;
    display: flex;
    flex-flow: row;
    gap: 16px;
}

.form-secondary-button {
    display: block;
    background: #f2f1f0;
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    padding: 15px 18px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: .2s ease;
    cursor: pointer;
}

.form-secondary-button:hover {
    background: #E2E1E0;
}

.form-secondary-button:active {
    opacity: 0.8;
    transform: scale(1.01);
}

#errorNotifiy {
    color: #ff6162;
    margin: 12px 0;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: .4s ease;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: .3s;
    animation-timing-function: linear;
}

#errorNotifiy[data-has-error='true'] {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}                                                                                                       

form.form-wrapper a:not(.form-secondary-button),
form.form-wrapper a:not(.form-secondary-button):visited {
    color: #00aaff;  
}

form.form-wrapper a:not(.form-secondary-button):hover {
    color: #ff6163;  
}
