.tifago-subscription-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.tifago-price {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin: 15px 0;
}

.form-group {
    margin: 15px 0;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.tifago-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.tifago-submit-btn:hover {
    background: #0056b3;
}

.tifago-login-register {
    margin: 20px 0;
}

.tifago-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.tifago-btn:hover {
    background: #218838;
    color: white;
}

.tifago-access-denied {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    color: #856404;
}

#tifago-message {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#tifago-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#tifago-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}