/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #0d1216;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    max-width: 540px;
    width: 100%;
    background: #ffffff;
    padding: 20px 20px 30px 20px;
    margin: 0 auto;
}

/* Контейнер для логотипов на одной линии */
.logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.header-logo {
    display: flex;
    justify-content: flex-start;
}

.uzbekistan-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.bank-logo {
    display: flex;
    justify-content: flex-end;
}

.bank-logo-img {
    max-width: 180px;
    height: auto;
}

/* Главный заголовок */
.main-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Разделительная линия */
.divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1800AD 0%, #1800AD 100%);
    margin: 25px 0;
}

/* Подзаголовки */
.subtitle {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin-bottom: 3px;
}

.info-text {
    font-size: 15px;
    font-weight: 400;
    color: #6F1F7D;
    text-align: center;
    margin-bottom: 3px;
}

/* Секция формы */
.form-section {
    background: #ffffff;
    border: 4px solid #6f1f7d;
    border-left-width: 12px;
    border-right-width: 12px;
    border-radius: 35px;
    padding: 0;
    margin: 30px 0;
    overflow: hidden;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    background: #6f1f7d;
    padding: 15px 20px;
    margin-bottom: 0;
}

/* Группы полей */
.form-group {
    margin-bottom: 20px;
    padding: 0 20px;
}

.form-group:first-of-type {
    margin-top: 25px;
}

.form-group:last-child {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #6f1f7d;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 12px 50px 12px 15px;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #0d1216;
    background: transparent;
    font-family: inherit;
    width: 100%;
}

.copy-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6F1F7D;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: #4F065A;
}

.copy-btn svg {
    width: 20px;
    height: 20px;
}

/* Инструкция */
.instruction {
    text-align: center;
    margin: 30px 0;
}

.instruction-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 15px;
}

.instruction-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #6F1F7D;
    line-height: 1.4;
}

/* Кнопка отправки */
.submit-btn {
    width: 100%;
    background: #6f1f7d;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 31, 125, 0.3);
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 31, 125, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Уведомление */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #008008;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Адаптивность */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px 15px;
    }

    .logos-container {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .uzbekistan-logo {
        width: 80px;
        height: 80px;
    }

    .bank-logo-img {
        max-width: 140px;
    }

    .main-title {
        font-size: 18px;
    }

    .subtitle {
        font-size: 16px;
    }

    .info-text {
        font-size: 13px;
    }

    .form-section {
        border-width: 3px;
        border-left-width: 10px;
        border-right-width: 10px;
    }

    .form-title {
        font-size: 15px;
        padding: 12px 15px;
    }

    .form-group {
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .form-group:first-of-type {
        margin-top: 20px;
    }

    .form-group:last-child {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 11px;
    }

    .input-wrapper input {
        font-size: 13px;
    }

    .instruction-title {
        font-size: 18px;
    }

    .instruction-subtitle {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 20px;
        padding: 16px 30px;
    }

    .notification {
        right: 10px;
        left: 10px;
        top: 10px;
    }
}

@media (max-width: 360px) {
    .logos-container {
        gap: 10px;
    }

    .uzbekistan-logo {
        width: 60px;
        height: 60px;
    }

    .bank-logo-img {
        max-width: 120px;
    }

    .main-title {
        font-size: 16px;
    }

    .form-section {
        border-width: 3px;
        border-left-width: 8px;
        border-right-width: 8px;
    }

    .form-title {
        font-size: 14px;
        padding: 10px 12px;
    }

    .form-group {
        padding: 0 12px;
    }

    .input-wrapper {
        padding: 10px 45px 10px 12px;
    }

    .submit-btn {
        font-size: 18px;
        padding: 14px 25px;
    }
}

