/* ILTS - Styly pro Comgate platební bránu - ladící s designem webu */
.comgate-payment-form-container {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    max-width: 480px;
    margin: 20px auto;
    position: relative;
    width: 100%;
}

.comgate-payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.comgate-form-group {
    margin-bottom: 0;
    width: 100%;
}

.comgate-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.comgate-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    background-color: #ffffff;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.comgate-form-group input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.comgate-form-group input:hover {
    border-color: #007cba;
}

.comgate-form-group input::placeholder {
    color: #666;
    font-style: normal;
}

.comgate-submit-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

.comgate-submit-button:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.2);
}

.comgate-submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.2);
}

.comgate-submit-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.comgate-messages {
    margin-top: 20px;
    width: 100%;
}

.comgate-error {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

.comgate-success {
    color: #059669;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

/* Responzivní design */
@media (max-width: 768px) {
    .comgate-payment-form-container {
        margin: 10px;
        padding: 24px 20px;
    }
    
    .comgate-form-group input {
        padding: 12px 14px;
        font-size: 16px; /* Zabrání zoomu na iOS */
    }
    
    .comgate-submit-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .comgate-payment-form-container {
        margin: 5px;
        padding: 20px 16px;
    }
    
    .comgate-form-group input {
        padding: 12px 14px;
    }
    
    .comgate-submit-button {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Animace pro loading stav */
.comgate-submit-button.loading {
    position: relative;
    color: transparent;
}

.comgate-submit-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Vylepšené focus stavy pro přístupnost */
.comgate-form-group input:focus-visible {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

.comgate-submit-button:focus-visible {
    outline: 2px solid #007cba;
    outline-offset: 2px;
} 