/* Kyrgyztelecom API Integration Styles */
.kt-balance-check, .kt-login, .kt-account {
   margin: 40px;
}

.kt-balance-check h2, .kt-login h2, .kt-account h2 {
    color: #3E3E3E;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
}

.kt-balance-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.kt-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.kt-form-group label {
    color: #0F3B71;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.kt-form-group input, .kt-form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.kt-form-group input:focus, .kt-form-group select:focus {
    border-color: #d32f2f;
    outline: none;
}

.kt-balance-form button {
    padding: 12px 20px;
    background: #0F3B71;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 120px;
    width:100%;
}

.kt-balance-form button:hover {
    background: #d32f2f;
    color:#fff;
}

.kt-login-form, .kt-logout-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kt-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
}

#kt-balance-result {
    margin-top: 15px;
}

#kt-balance-result p {
    font-size: 14px;
    color: #0F3B71;
}

.kt-account-card {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}

.kt-account-card h3 {
    color: #0F3B71;
    font-size: 18px;
    margin-bottom: 10px;
}

.kt-account-card p {
    margin: 5px 0;
    font-size: 14px;
}

.kt-account-card h4 {
    color: #0F3B71;
    font-size: 16px;
    margin: 15px 0 10px;
}

.kt-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.kt-table th, .kt-table td {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    text-align: left;
}

.kt-table th {
    background: #0F3B71;
    color: #fff;
    font-weight: 500;
}

.kt-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.kt-form-group-vybor-usl {
    width:20%;
}
select#kt_billing_type {
    border-radius: 10px;
    width:100%;
}

.kt-form-group-lic-schet {
    width: 50%;
}

input#account_number {
    border-radius: 10px;
    width:100%;
}

.kt-form-group-proverka-knopka {
    margin-bottom: 2%;
    width:23%;
}
button.proverka-knopka {
    border-radius: 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px;
    width:200px;
}

.kt-success {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    background: #d3302f;
    padding: 15px;
    border-radius: 15px;
}


@media (max-width: 600px) {
    .kt-balance-check, .kt-login, .kt-account {
        padding: 15px;
    }
    
    .kt-balance-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .kt-balance-form button {
        width: 100%;
    }
    
    .kt-table {
        font-size: 12px;
    }
    
    .kt-table th, .kt-table td {
        padding: 8px;
    }
    .kt-form-group-vybor-usl, .kt-form-group-lic-schet, .kt-form-group-proverka-knopka {
        width:100% !important;
    }
    .kt-balance-check h2, .kt-login h2, .kt-account h2 {
        font-size:16px;
    }
}