/* .registration{
    max-width: 1440px;
    padding: 112px 64px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.registration-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.47);
    width: 100%;
    max-width: 400px;
}

.registration__register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-form-title {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.register-form-input{
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;

}


button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: black;
} */





/* Стили для попапа */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* .popup--active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup__container {
    background: #131317;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.popup__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup__title {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.popup__input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.popup__button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.popup__button:hover {
    background-color: #333;
}

.popup__close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.popup__close:hover {
    opacity: 1;
}

.popup__message {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.popup__message--error {
    display: block;
    background-color: rgba(220, 38, 38, 0.1);
    color: #ef4444;
}

.popup__message--success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
} */

/* Registration */
.registration {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.registration__container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.47);
    width: 100%;
    max-width: 400px;
}

.registration__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration__title {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.registration__input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.registration__input:focus {
    outline: none;
    border-color: #4f46e5;
}

.registration__button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.registration__button:hover {
    background-color: #333;
}

.test{
    height: 1000px;
}

/* Registration Form */
.registration {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.registration__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.registration__title {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.registration__form-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.registration__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.registration__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registration__label {
    font-size: 14px;
    color: #ffffff;
}

.registration__input {
    width: 100%;
    padding: 12px 16px;
    background: #1E1E23;
    border: 1px solid #2E2E35;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.registration__input:focus {
    outline: none;
    border-color: #4F46E5;
}

.registration__input::placeholder {
    color: #6B7280;
}

.registration__buttons-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.registration__button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.registration__button--primary {
    background: linear-gradient(90deg, #4F46E5 0%, #2894EC 100%);
    color: #ffffff;
}

.registration__button--primary:hover {
    opacity: 0.9;
}

.registration__button--yandex {
    background: #ffffff;
    color: #000000;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.registration__button--yandex:hover {
    background: #f3f4f6;
}

.registration__divider-container,
.registration__yandex-container {

}

.registration__separator {
    width: 100%;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.registration__divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.registration__divider-line {
    flex: 1;
    height: 1px;
    background: #2E2E35;
}

.registration__divider-text {
    color: #6B7280;
    font-size: 14px;
}

.registration__signin {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.registration__signin-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
}

.registration__signin-link:hover {
    text-decoration: underline;
}

.registration__code-container {
    display: flex;
    gap: 8px;
}

.registration__input--code {
    flex: 1;
}

.registration__send-code {
    padding: 12px 16px;
    background: #4F46E5;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.registration__send-code:hover {
    opacity: 0.9;
}

.registration__send-code:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.registration__yandex-wrapper {
    width: 100%;
    min-height: 40px;
}