/* GTV Detalės - Minimal Stiliai */
/* Leidžia WooCommerce standartiniams stiliams veikti */

/* ===============================================
   Login Container - tik wrapper
   =============================================== */

.gtv-login-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.gtv-login-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
}

.gtv-login-box .gtv-lock-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.gtv-login-box > h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    text-align: center;
}

.gtv-login-box > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

/* Login form - neliesime WooCommerce stilių */
.gtv-login-form {
    margin-top: 20px;
}

/* Login footer */
.gtv-login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.gtv-contact-info {
    color: #868e96;
    font-size: 14px;
}

/* ===============================================
   Access Denied Container
   =============================================== */

.gtv-access-denied-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}

.gtv-access-denied-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 50px;
    text-align: center;
}

.gtv-access-denied-box .gtv-lock-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.gtv-access-denied-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.gtv-access-denied-box > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.gtv-access-denied-box .gtv-hint {
    font-size: 14px;
    color: #868e96;
    margin-bottom: 15px;
}

.gtv-contact-info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
}

.gtv-contact-info-box p {
    margin: 8px 0;
    font-size: 15px;
    color: #495057;
}

.gtv-contact-info-box a {
    color: #ee1c25;
    text-decoration: none;
    font-weight: 500;
}

.gtv-contact-info-box a:hover {
    text-decoration: underline;
}

/* Action buttons */
.gtv-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.gtv-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gtv-btn:first-child {
    background: #ee1c25;
    color: white;
}

.gtv-btn:first-child:hover {
    background: #c41820;
}

.gtv-btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.gtv-btn-secondary:hover {
    background: #e9ecef;
}

/* ===============================================
   Responsive
   =============================================== */

@media (max-width: 768px) {
    .gtv-login-container,
    .gtv-access-denied-container {
        margin: 30px auto;
    }
    
    .gtv-login-box,
    .gtv-access-denied-box {
        padding: 30px 20px;
    }
    
    .gtv-actions {
        flex-direction: column;
    }
    
    .gtv-btn {
        width: 100%;
        text-align: center;
    }
}