/* Frontend styles */
.gti-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gti-form-group {
    margin-bottom: 20px;
}

.gti-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.gti-form-group input[type="text"],
.gti-form-group input[type="email"],
.gti-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.gti-form-submit {
    text-align: center;
}

.gti-form-submit button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gti-form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gti-form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.gti-form-response.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.gti-form-response.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Confirmation Screen */
.gti-form-confirmation {
    margin-bottom: 25px;
}
.gti-confirm-table {
    width: 100%;
    margin-bottom: 20px;
}
.gti-confirm-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.gti-confirm-label {
    width: 150px;
    font-weight: bold;
    color: #666;
}
.gti-confirm-value {
    flex: 1;
}

/* Back Button */
.gti-back-btn {
    padding: 12px 25px;
    background: #eee;
    color: #333;
    border: none;
    border-radius: 25px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
}
.gti-back-btn:hover {
    background: #ddd;
}
