.registration-wrap {
    background-color: black;
    border-radius: 16px;
    padding: 24px;
    width: 760px;
    display: flex;
    justify-content: space-between;
}

.registration-info-half {
    background-color: #101010;
    padding: 24px;
    border-radius: 16px;
    width: calc(50% - 12px);
}

.registration-info-half h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}

.registr-benefit-line {
    margin-bottom: 16px;
}

.registr-benefit-icon {
    height: 32px;
    width: 32px;
    color: #97041D;
    margin-right: 8px;
}

.registration-form-half {
    width: calc(50% - 12px);
}

.registr-head {
    margin-bottom: 8px;
}

.registr-head h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 4px;
}

.registr-head h3 {
    font-size: 14px;
    font-weight: 400;
    color: #AAAAAA; 
}

.registr-head-logo {
    height: 72px;
    width: 72px;
}

.login-input {
    outline: 0;
    width: 100%;
    height: 56px;
    background-color: #151515;
    border-radius: 8px;
    border: 0;
    margin-top: 16px;
    padding: 8px 16px;
    color: white;
}

.login-submit {
    height: 56px;
    color: white;
    background-color: #97041D;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    border: 0;
    width: 100%;
    margin-top: 16px;
    transition: all 0.2s;
}

.login-submit:hover {
    background-color: #6e0012;
}

.login-btn {
    margin-top: 32px;
}

.login-link {
    font-weight: 400;
}

.login-link:hover {
    text-decoration: underline;
}

.login-bold {
    font-weight: 500;
}

.registration-confirm-message {
    background-color: black;
    padding: 40px;
    text-align: center;
    width: 640px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.registration-confirm-message svg {
    height: 96px;
    width: 96px;
    color: #97041D;
}

.registration-confirm-message span {
    font-size: 16px;
    line-height: 150%;
}

.go-to-login-btn {
    height: 56px;
    color: white;
    background-color: #97041D;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    border: 0;
    width: 320px;
}

.custom-checkbox {
    user-select: none;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: #151515;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    transition: background-color 0.1s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #97041D;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 3px 3px 0;
    border-radius: 2px;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: border-color 0.1s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    border-color: #fff;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.login-loading {
    margin-top: 4px;
    animation: spin 1.2s linear infinite;
}

@media only screen and (max-width: 800px) {
    .registration-wrap {
        width: 88%;
        flex-direction: column;
    }


    .registration-form-half {
        width: 100%;
        order: 1;
        margin-bottom: 24px;
    }

    .registration-info-half {
        width: 100%;
        order: 2;
        min-height: 320px;
    }
}